X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/c4190b30d5c70af4aa1d3b57514047ea425bbcc4..c969e831c5977919d3e1c094acc86e194c50d17c:/proxy.c diff --git a/proxy.c b/proxy.c index 5baab7a8..ad3b8146 100644 --- a/proxy.c +++ b/proxy.c @@ -16,9 +16,7 @@ #define do_proxy_dns(cfg) \ (cfg->proxy_dns == FORCE_ON || \ - (cfg->proxy_dns == AUTO && \ - cfg->proxy_type != PROXY_SOCKS4 && \ - cfg->proxy_type != PROXY_SOCKS5)) + (cfg->proxy_dns == AUTO && cfg->proxy_type != PROXY_SOCKS4)) /* * Call this when proxy negotiation is complete, so that this @@ -191,6 +189,15 @@ static const char * sk_proxy_socket_error (Socket s) /* basic proxy plug functions */ +static void plug_proxy_log(Plug plug, int type, SockAddr addr, int port, + const char *error_msg, int error_code) +{ + Proxy_Plug pp = (Proxy_Plug) plug; + Proxy_Socket ps = pp->proxy_socket; + + plug_log(ps->plug, type, addr, port, error_msg, error_code); +} + static int plug_proxy_closing (Plug p, const char *error_msg, int error_code, int calling_back) { @@ -372,6 +379,7 @@ Socket new_connection(SockAddr addr, char *hostname, }; static const struct plug_function_table plug_fn_table = { + plug_proxy_log, plug_proxy_closing, plug_proxy_receive, plug_proxy_sent,