mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2025-02-23 20:52:15 +08:00
fix: handle no IP address
This commit is contained in:
parent
e1dd4ac9e7
commit
d36f9c2ac8
@ -218,13 +218,17 @@ func dualStackDialContext(
|
|||||||
return res.Conn, nil
|
return res.Conn, nil
|
||||||
}
|
}
|
||||||
fallback = res
|
fallback = res
|
||||||
}
|
} else {
|
||||||
err = res.error
|
err = res.error
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func parallelDialContext(ctx context.Context, network string, ips []netip.Addr, port string, opt *option) (net.Conn, error) {
|
func parallelDialContext(ctx context.Context, network string, ips []netip.Addr, port string, opt *option) (net.Conn, error) {
|
||||||
|
if len(ips) == 0 {
|
||||||
|
return nil, errors.New("no ip address")
|
||||||
|
}
|
||||||
results := make(chan dialResult)
|
results := make(chan dialResult)
|
||||||
returned := make(chan struct{})
|
returned := make(chan struct{})
|
||||||
defer close(returned)
|
defer close(returned)
|
||||||
@ -267,6 +271,9 @@ func parallelDialContext(ctx context.Context, network string, ips []netip.Addr,
|
|||||||
}
|
}
|
||||||
|
|
||||||
func serialDialContext(ctx context.Context, network string, ips []netip.Addr, port string, opt *option) (net.Conn, error) {
|
func serialDialContext(ctx context.Context, network string, ips []netip.Addr, port string, opt *option) (net.Conn, error) {
|
||||||
|
if len(ips) == 0 {
|
||||||
|
return nil, errors.New("no ip address")
|
||||||
|
}
|
||||||
var (
|
var (
|
||||||
conn net.Conn
|
conn net.Conn
|
||||||
err error
|
err error
|
||||||
|
Loading…
Reference in New Issue
Block a user