mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 11:42:43 +08:00
fix: 并发dns查询,由于ipv6阻塞导致某些情况下的网络不通
This commit is contained in:
parent
3ab82849d4
commit
948700eed6
|
@ -82,12 +82,16 @@ func (r *Resolver) ResolveAllIP(host string) (ips []netip.Addr, err error) {
|
|||
|
||||
ips, err = r.resolveIP(host, D.TypeA)
|
||||
|
||||
ipv6s, open := <-ch
|
||||
select {
|
||||
case ipv6s, open := <-ch:
|
||||
if !open && err != nil {
|
||||
return nil, resolver.ErrIPNotFound
|
||||
}
|
||||
|
||||
ips = append(ips, ipv6s...)
|
||||
case <-time.After(3 * time.Millisecond):
|
||||
// wait ipv6 3ms
|
||||
}
|
||||
|
||||
return ips, nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user