From 3cef651b07f1ab0a5bdb557e88a19e9e8de7827d Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Fri, 1 Nov 2019 23:00:39 +0100 Subject: [PATCH] Rename resolveHost() to resolveHostWithCache() for clarity (but to be honest, I don't understand anything to that code any more) --- dnscrypt-proxy/xtransport.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dnscrypt-proxy/xtransport.go b/dnscrypt-proxy/xtransport.go index 0024755f..508f9510 100644 --- a/dnscrypt-proxy/xtransport.go +++ b/dnscrypt-proxy/xtransport.go @@ -242,7 +242,7 @@ func (xTransport *XTransport) resolveUsingResolver(proto, host string, resolver return } -func (xTransport *XTransport) resolveHost(host string) (err error) { +func (xTransport *XTransport) resolveHostWithCache(host string) (err error) { if xTransport.proxyDialer != nil || xTransport.httpProxyFunction != nil { return } @@ -314,7 +314,7 @@ func (xTransport *XTransport) Fetch(method string, url *url.URL, accept string, if xTransport.proxyDialer == nil && strings.HasSuffix(host, ".onion") { return nil, 0, errors.New("Onion service is not reachable without Tor") } - if err := xTransport.resolveHost(host); err != nil { + if err := xTransport.resolveHostWithCache(host); err != nil { return nil, 0, err } req := &http.Request{