From 3ea8a4d220067e27ab3b988f35b3ac7b9c27efd4 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 23 Sep 2006 19:07:20 +0000 Subject: Dmitriy Sergeyev provided a patch that made the SOCKS[45] code work better as it now will read the full data sent from servers. The SOCKS-related code was also moved to the new lib/socks.c source file. --- lib/socks.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 lib/socks.h (limited to 'lib/socks.h') diff --git a/lib/socks.h b/lib/socks.h new file mode 100644 index 000000000..b0a40a69d --- /dev/null +++ b/lib/socks.h @@ -0,0 +1,19 @@ +#ifndef __SOCKS_H +#define __SOCKS_H + +/* + * This function logs in to a SOCKS4 proxy and sends the specifics to the + * final destination server. + */ +CURLcode Curl_SOCKS4(const char *proxy_name, + struct connectdata *conn); + +/* + * This function logs in to a SOCKS5 proxy and sends the specifics to the + * final destination server. + */ +CURLcode Curl_SOCKS5(const char *proxy_name, + const char *proxy_password, + struct connectdata *conn); + +#endif -- cgit v1.2.3