mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
fix: resolve_preference not work
This commit is contained in:
parent
1b2eb49da1
commit
4747be198e
1 changed files with 7 additions and 3 deletions
|
@ -37,11 +37,15 @@ func resolveIPAddrWithPreference(host string, pref ResolvePreference) (*net.IPAd
|
|||
return nil, err
|
||||
}
|
||||
var ip4, ip6 *net.IPAddr
|
||||
for _, ip := range ips {
|
||||
for i := range ips {
|
||||
ip := &ips[i]
|
||||
if ip.IP.To4() != nil {
|
||||
ip4 = &ip
|
||||
ip4 = ip
|
||||
} else {
|
||||
ip6 = &ip
|
||||
ip6 = ip
|
||||
}
|
||||
if ip4 != nil && ip6 != nil {
|
||||
break
|
||||
}
|
||||
}
|
||||
switch pref {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue