mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
Update xtransport.go
Testing fix the ResolveAndUpdate to go with the correct dnscrypt order and dont add null IP
This commit is contained in:
parent
ba52f8897b
commit
258062fc9b
1 changed files with 10 additions and 10 deletions
|
@ -424,13 +424,6 @@ func (xTransport *XTransport) resolveAndUpdateCache(host string) error {
|
|||
} else {
|
||||
err = errors.New("Service is not usable yet")
|
||||
dlog.Notice(err)
|
||||
if xTransport.ignoreSystemDNS == false {
|
||||
foundIP, ttl, err = xTransport.resolveUsingSystem(host)
|
||||
if err != nil {
|
||||
err = errors.New("System DNS is not usable yet")
|
||||
dlog.Notice(err)
|
||||
}
|
||||
}
|
||||
}
|
||||
if err != nil {
|
||||
for _, proto := range protos {
|
||||
|
@ -447,9 +440,15 @@ func (xTransport *XTransport) resolveAndUpdateCache(host string) error {
|
|||
}
|
||||
}
|
||||
}
|
||||
if err != nil && xTransport.ignoreSystemDNS {
|
||||
if err != nil && xTransport.ignoreSystemDNS == false {
|
||||
dlog.Noticef("Bootstrap resolvers didn't respond - Trying with the system resolver as a last resort")
|
||||
foundIP, ttl, err = xTransport.resolveUsingSystem(host)
|
||||
if err != nil {
|
||||
err = errors.New("System DNS is not usable yet")
|
||||
dlog.Notice(err)
|
||||
}
|
||||
}else if err != nil && xTransport.ignoreSystemDNS == true {
|
||||
dlog.Noticef("Bootstrap resolvers didn't respond and we are ignoring system dns")
|
||||
}
|
||||
if ttl < MinResolverIPTTL {
|
||||
ttl = MinResolverIPTTL
|
||||
|
@ -471,9 +470,10 @@ func (xTransport *XTransport) resolveAndUpdateCache(host string) error {
|
|||
} else {
|
||||
dlog.Errorf("no IP address found for [%s]", host)
|
||||
}
|
||||
}
|
||||
}else{
|
||||
xTransport.saveCachedIP(host, foundIP, ttl)
|
||||
dlog.Debugf("[%s] IP address [%s] added to the cache, valid for %v", host, foundIP, ttl)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue