- rDNS: don't try to resolve loopback IP addresses
This commit is contained in:
parent
f1e6a30931
commit
6a1edc45be
|
@ -165,7 +165,10 @@ func onDNSRequest(d *proxy.DNSContext) {
|
|||
return
|
||||
}
|
||||
|
||||
beginAsyncRDNS(ip)
|
||||
ipAddr := net.ParseIP(ip)
|
||||
if !ipAddr.IsLoopback() {
|
||||
beginAsyncRDNS(ip)
|
||||
}
|
||||
}
|
||||
|
||||
func generateServerConfig() dnsforward.ServerConfig {
|
||||
|
|
Loading…
Reference in New Issue