diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-02-19 11:53:54 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-02-19 11:53:54 +0000 |
commit | 17e8d60c01f8f020e3738db855584f23fb892a04 (patch) | |
tree | 6ff557b749486c4e40b266583de848c41e9e984e /lib/socks.h | |
parent | ec1b3513176b6bac4706de2dc6468dcff3a2e63f (diff) | |
download | curl-17e8d60c01f8f020e3738db855584f23fb892a04.tar.gz |
- Robson Braga Araujo made passive FTP transfers work with SOCKS (both 4 and
5).
Diffstat (limited to 'lib/socks.h')
-rw-r--r-- | lib/socks.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/socks.h b/lib/socks.h index 0da987998..471b26224 100644 --- a/lib/socks.h +++ b/lib/socks.h @@ -28,6 +28,9 @@ * final destination server. */ CURLcode Curl_SOCKS4(const char *proxy_name, + char *hostname, + int remote_port, + int sockindex, struct connectdata *conn); /* @@ -36,6 +39,9 @@ CURLcode Curl_SOCKS4(const char *proxy_name, */ CURLcode Curl_SOCKS5(const char *proxy_name, const char *proxy_password, + char *hostname, + int remote_port, + int sockindex, struct connectdata *conn); #endif |