Merge branch 'pt/http-socks-proxy' into maint
Add support for talking http/https over socks proxy. * pt/http-socks-proxy: remote-http(s): support SOCKS proxies
This commit is contained in:
11
http.c
11
http.c
@ -465,6 +465,17 @@ static CURL *get_curl_handle(void)
|
|||||||
|
|
||||||
if (curl_http_proxy) {
|
if (curl_http_proxy) {
|
||||||
curl_easy_setopt(result, CURLOPT_PROXY, curl_http_proxy);
|
curl_easy_setopt(result, CURLOPT_PROXY, curl_http_proxy);
|
||||||
|
#if LIBCURL_VERSION_NUM >= 0x071800
|
||||||
|
if (starts_with(curl_http_proxy, "socks5"))
|
||||||
|
curl_easy_setopt(result,
|
||||||
|
CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
|
||||||
|
else if (starts_with(curl_http_proxy, "socks4a"))
|
||||||
|
curl_easy_setopt(result,
|
||||||
|
CURLOPT_PROXYTYPE, CURLPROXY_SOCKS4A);
|
||||||
|
else if (starts_with(curl_http_proxy, "socks"))
|
||||||
|
curl_easy_setopt(result,
|
||||||
|
CURLOPT_PROXYTYPE, CURLPROXY_SOCKS4);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
#if LIBCURL_VERSION_NUM >= 0x070a07
|
#if LIBCURL_VERSION_NUM >= 0x070a07
|
||||||
curl_easy_setopt(result, CURLOPT_PROXYAUTH, CURLAUTH_ANY);
|
curl_easy_setopt(result, CURLOPT_PROXYAUTH, CURLAUTH_ANY);
|
||||||
|
Reference in New Issue
Block a user