mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 13:07:39 +03:00
feat: fix outbound
This commit is contained in:
parent
d4e3833641
commit
e381c2eae8
3 changed files with 113 additions and 16 deletions
24
extras/outbounds/utils.go
Normal file
24
extras/outbounds/utils.go
Normal file
|
@ -0,0 +1,24 @@
|
|||
package outbounds
|
||||
|
||||
import "net"
|
||||
|
||||
// splitIPv4IPv6 gets the first IPv4 and IPv6 address from a list of IP addresses.
|
||||
// Both of the return values can be nil when no IPv4 or IPv6 address is found.
|
||||
func splitIPv4IPv6(ips []net.IP) (ipv4, ipv6 net.IP) {
|
||||
for _, ip := range ips {
|
||||
if ip.To4() != nil {
|
||||
if ipv4 == nil {
|
||||
ipv4 = ip
|
||||
}
|
||||
} else {
|
||||
if ipv6 == nil {
|
||||
ipv6 = ip
|
||||
}
|
||||
}
|
||||
if ipv4 != nil && ipv6 != nil {
|
||||
// We have everything we need.
|
||||
break
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue