X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/0e8f4cdabb9a8f170d1f22277c59a2f1effd67b9..b9d7bcadee831e9b59fb785f2464a5fc1897bd1a:/proxy.h diff --git a/proxy.h b/proxy.h index c74c89c8..6e641141 100644 --- a/proxy.h +++ b/proxy.h @@ -4,8 +4,7 @@ * A proxy layer, if necessary, wedges itself between the * network code and the higher level backend. * - * Supported proxies: HTTP CONNECT, generic telnet - * In progress: SOCKS + * Supported proxies: HTTP CONNECT, generic telnet, SOCKS 4 & 5 */ #ifndef PUTTY_PROXY_H @@ -96,6 +95,7 @@ extern void proxy_activate (Proxy_Socket); extern int proxy_http_negotiate (Proxy_Socket, int); extern int proxy_telnet_negotiate (Proxy_Socket, int); -extern int proxy_socks_negotiate (Proxy_Socket, int); +extern int proxy_socks4_negotiate (Proxy_Socket, int); +extern int proxy_socks5_negotiate (Proxy_Socket, int); #endif