- Robson Braga Araujo made passive FTP transfers work with SOCKS (both 4 and

5).
This commit is contained in:
Daniel Stenberg
2007-02-19 11:53:54 +00:00
parent ec1b351317
commit 17e8d60c01
7 changed files with 56 additions and 17 deletions

View File

@@ -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