mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 13:47:39 +03:00
fix: xtransport: Ensure we strip [] from host/ip before net.ParseIP
This commit is contained in:
parent
ac4843b460
commit
890dcca270
1 changed files with 5 additions and 1 deletions
|
@ -68,6 +68,10 @@ func NewXTransport() *XTransport {
|
|||
return &xTransport
|
||||
}
|
||||
|
||||
func ParseIP(ipStr string) net.IP {
|
||||
return net.ParseIP(strings.TrimRight(strings.TrimLeft(ipStr, "["), "]"))
|
||||
}
|
||||
|
||||
func (xTransport *XTransport) clearCache() {
|
||||
xTransport.cachedIPs.Lock()
|
||||
xTransport.cachedIPs.cache = make(map[string]string)
|
||||
|
@ -232,7 +236,7 @@ func (xTransport *XTransport) Fetch(method string, url *url.URL, accept string,
|
|||
resolveByProxy = true
|
||||
}
|
||||
var foundIP *string
|
||||
if !resolveByProxy && net.ParseIP(host) == nil {
|
||||
if !resolveByProxy && ParseIP(host) == nil {
|
||||
xTransport.cachedIPs.RLock()
|
||||
cachedIP := xTransport.cachedIPs.cache[host]
|
||||
xTransport.cachedIPs.RUnlock()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue