diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-12-16 15:10:19 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-12-16 15:10:19 +0100 |
commit | 7907a2bec9c2d69e901dcc662c9e048ff0248b7d (patch) | |
tree | 9cf83c4816edb2a05a2ee8c937d47fb78b992543 /src | |
parent | 558b5f68a6da9d03cfd6466bf44af2dc9010098b (diff) | |
download | curl-7907a2bec9c2d69e901dcc662c9e048ff0248b7d.tar.gz |
CURLOPT_SOCKS_PROXYTYPE: removed
This was added as part of the SOCKS+HTTPS proxy merge but there's no
need to support this as we prefer to have the protocol specified as a
prefix instead.
Diffstat (limited to 'src')
-rw-r--r-- | src/tool_operate.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/tool_operate.c b/src/tool_operate.c index 2c9b4465a..504c20769 100644 --- a/src/tool_operate.c +++ b/src/tool_operate.c @@ -867,11 +867,9 @@ static CURLcode operate_do(struct GlobalConfig *global, if(config->proxy) my_setopt_enum(curl, CURLOPT_PROXYTYPE, (long)config->proxyver); - /* new in libcurl 7.10 */ + /* new in libcurl 7.52.0 */ if(config->socksproxy) { my_setopt_str(curl, CURLOPT_SOCKS_PROXY, config->socksproxy); - my_setopt_enum(curl, CURLOPT_SOCKS_PROXYTYPE, - (long)config->socksver); } /* new in libcurl 7.10.6 */ |