mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 03:52:49 -05:00
Change proxy-dns `Auto' default for SOCKS5 from local DNS to remote DNS.
SOCKS5 should always be able to do this, and I suspect our not doing so dates from when the SOCKS proxy types were under a single configuration option (pre-r3168). [originally from svn r5654]
This commit is contained in:
4
proxy.c
4
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
|
||||
|
Reference in New Issue
Block a user