mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
parent
b67d19ffb3
commit
71e3cf4aef
1 changed files with 5 additions and 1 deletions
|
@ -133,7 +133,11 @@ func (xTransport *XTransport) rebuildTransport() {
|
|||
ipOnly := host
|
||||
cachedIP, ok := xTransport.loadCachedIP(host, false)
|
||||
if ok {
|
||||
ipOnly = cachedIP.String()
|
||||
if ipv4 := cachedIP.To4(); ipv4 != nil {
|
||||
ipOnly = ipv4.String()
|
||||
} else {
|
||||
ipOnly = "[" + cachedIP.String() + "]"
|
||||
}
|
||||
} else {
|
||||
dlog.Debugf("[%s] IP address was not cached", host)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue