diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-01-05 22:04:18 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-01-05 22:04:18 +0000 |
commit | b4305764367f24f06ce7dedc557d90772a00eec1 (patch) | |
tree | d723ad3a4b96f6d4bb810e5853de764f83da99da /RELEASE-NOTES | |
parent | 65008a4e55db71cff22e3fca6b36f15eb642b92d (diff) |
Based on further discussion on curl-library, I reverted yesterday's SOCKS5
code to instead introduce support for a new proxy type called
CURLPROXY_SOCKS5_HOSTNAME that is used to send the host name to the proxy
instead of IP address and there's thus no longer any need for a new
curl_easy_setopt() option.
The default SOCKS5 proxy is again back to sending the IP address to the
proxy. The new curl command line option for enabling sending host name to a
SOCKS5 proxy is now --socks5-hostname.
Diffstat (limited to 'RELEASE-NOTES')
-rw-r--r-- | RELEASE-NOTES | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 03a3d5b11..0eb852074 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -2,7 +2,7 @@ Curl and libcurl 7.17.2 Public curl releases: 103 Command line options: 125 - curl_easy_setopt() options: 149 + curl_easy_setopt() options: 148 Public functions in libcurl: 55 Public web site mirrors: 42 Known libcurl bindings: 36 @@ -15,7 +15,7 @@ This release includes the following changes: o --no-keep-alive was added, since starting now curl is doing connections with keep-alive enabled by default o --socks4a added (proxy type CURLPROXY_SOCKS4A for libcurl) - o --socks5ip added (CURLOPT_SOCKS5_RESOLVE_LOCAL for libcurl) + o --socks5-hostname added (CURLPROXY_SOCKS5_HOSTNAME for libcurl) This release includes the following bugfixes: @@ -44,7 +44,6 @@ This release includes the following bugfixes: o bad connection re-use check with environment variable-activated proxy use o --libcurl now generates a return statement as well o socklen_t is no longer used in the public includes - o SOCKS5 uses now let the proxy resolve the host names by default This release includes the following known bugs: |