From 7907a2bec9c2d69e901dcc662c9e048ff0248b7d Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 16 Dec 2016 15:10:19 +0100 Subject: 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. --- src/tool_operate.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src') 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 */ -- cgit v1.2.3