mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-01-07 09:53:58 +08:00
fix: default nameserver cannot use non-standard port of doh
This commit is contained in:
parent
fa4d027a23
commit
32843596e1
@ -817,7 +817,11 @@ func parseDNS(rawCfg *RawConfig, hosts *trie.DomainTrie[netip.Addr], rules []C.R
|
|||||||
host, _, err := net.SplitHostPort(ns.Addr)
|
host, _, err := net.SplitHostPort(ns.Addr)
|
||||||
if err != nil || net.ParseIP(host) == nil {
|
if err != nil || net.ParseIP(host) == nil {
|
||||||
u, err := url.Parse(ns.Addr)
|
u, err := url.Parse(ns.Addr)
|
||||||
if err != nil || net.ParseIP(u.Host) == nil {
|
if err == nil {
|
||||||
|
if ip, _, err := net.SplitHostPort(u.Host); err != nil || net.ParseIP(ip) == nil {
|
||||||
|
return nil, errors.New("default nameserver should be pure IP")
|
||||||
|
}
|
||||||
|
} else {
|
||||||
return nil, errors.New("default nameserver should be pure IP")
|
return nil, errors.New("default nameserver should be pure IP")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user