mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 11:42:43 +08:00
fix: dns resolve in dialer
This commit is contained in:
parent
9a55e50a14
commit
4d336e8278
|
@ -314,7 +314,7 @@ func parseAddr(ctx context.Context, network, address string, preferResolver reso
|
|||
}
|
||||
default:
|
||||
if preferResolver == nil {
|
||||
ips, err = resolver.LookupIP(ctx, host)
|
||||
ips, err = resolver.LookupIPProxyServerHost(ctx, host)
|
||||
} else {
|
||||
ips, err = resolver.LookupIPWithResolver(ctx, host, preferResolver)
|
||||
}
|
||||
|
@ -328,7 +328,7 @@ func parseAddr(ctx context.Context, network, address string, preferResolver reso
|
|||
func sortationAddr(ips []netip.Addr) (ipv4s, ipv6s []netip.Addr) {
|
||||
for _, v := range ips {
|
||||
if v.Is4() || v.Is4In6() {
|
||||
ipv4s = append(ipv4s, v)
|
||||
ipv4s = append(ipv4s, v.Unmap())
|
||||
} else {
|
||||
ipv6s = append(ipv6s, v)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user