diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-12-16 16:02:08 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-12-16 16:04:23 +0100 |
commit | 845522cadb6ac9d357d68bb022a148a8c3be2e6a (patch) | |
tree | 8e49eea5efe813a1d985c8a700025755226a14a3 /include | |
parent | 642398c6517bac82d80089ecba9c2057a0752d74 (diff) |
preproxy: renamed what was added as SOCKS_PROXY
CURLOPT_SOCKS_PROXY -> CURLOPT_PRE_PROXY
Added the corresponding --preroxy command line option. Sets a SOCKS
proxy to connect to _before_ connecting to a HTTP(S) proxy.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index f5dd65d49..5b4ae469e 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1763,8 +1763,8 @@ typedef enum { CURLSSLOPT_* */ CINIT(PROXY_SSL_OPTIONS, LONG, 261), - /* Name of socks proxy to use. */ - CINIT(SOCKS_PROXY, STRINGPOINT, 262), + /* Name of pre proxy to use. */ + CINIT(PRE_PROXY, STRINGPOINT, 262), /* The public key in DER form used to validate the proxy public key this option is used only if PROXY_SSL_VERIFYPEER is true */ |