aboutsummaryrefslogtreecommitdiff
path: root/lib/url.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2009-05-08 10:59:40 +0000
committerDaniel Stenberg <daniel@haxx.se>2009-05-08 10:59:40 +0000
commite84c7db0497478b41f435f047d7b0e75b9289bb6 (patch)
tree077d8ad5268d9da301f6e1e4a384020b8159bc4c /lib/url.h
parent9ef7b6afe23e5f001645d20ac058fc6b37fbac58 (diff)
downloadgnurl-e84c7db0497478b41f435f047d7b0e75b9289bb6.tar.gz
gnurl-e84c7db0497478b41f435f047d7b0e75b9289bb6.tar.bz2
gnurl-e84c7db0497478b41f435f047d7b0e75b9289bb6.zip
- Constantine Sapuntzakis fixed bug report #2784055
(http://curl.haxx.se/bug/view.cgi?id=2784055) identifying a problem to connect to SOCKS proxies when using the multi interface. It turned out to almost not work at all previously. We need to wait for the TCP connect to be properly verified before doing the SOCKS magic. There's still a flaw in the FTP code for this.
Diffstat (limited to 'lib/url.h')
-rw-r--r--lib/url.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/url.h b/lib/url.h
index 7e22b7397..35900812f 100644
--- a/lib/url.h
+++ b/lib/url.h
@@ -85,4 +85,6 @@ void Curl_reset_reqproto(struct connectdata *conn);
#define CURL_DEFAULT_PROXY_PORT 1080 /* default proxy port unless specified */
#define CURL_DEFAULT_SOCKS5_GSSAPI_SERVICE "rcmd" /* default socks5 gssapi service */
+CURLcode Curl_connected_proxy(struct connectdata *conn);
+
#endif