mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +03:00
Fix gateway select
This commit is contained in:
parent
d95423e833
commit
b2b56ffcf8
1 changed files with 26 additions and 6 deletions
32
tun.go
32
tun.go
|
@ -89,10 +89,20 @@ func (o *Options) Inet4GatewayAddr() netip.Addr {
|
||||||
return o.Inet4Gateway
|
return o.Inet4Gateway
|
||||||
}
|
}
|
||||||
if len(o.Inet4Address) > 0 {
|
if len(o.Inet4Address) > 0 {
|
||||||
if HasNextAddress(o.Inet4Address[0], 1) {
|
switch runtime.GOOS {
|
||||||
return o.Inet4Address[0].Addr().Next()
|
case "android":
|
||||||
} else if runtime.GOOS != "linux" {
|
case "linux":
|
||||||
|
if HasNextAddress(o.Inet4Address[0], 1) {
|
||||||
|
return o.Inet4Address[0].Addr().Next()
|
||||||
|
}
|
||||||
|
case "darwin":
|
||||||
return o.Inet4Address[0].Addr()
|
return o.Inet4Address[0].Addr()
|
||||||
|
default:
|
||||||
|
if HasNextAddress(o.Inet4Address[0], 1) {
|
||||||
|
return o.Inet4Address[0].Addr().Next()
|
||||||
|
} else {
|
||||||
|
return o.Inet4Address[0].Addr()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return netip.IPv4Unspecified()
|
return netip.IPv4Unspecified()
|
||||||
|
@ -103,10 +113,20 @@ func (o *Options) Inet6GatewayAddr() netip.Addr {
|
||||||
return o.Inet6Gateway
|
return o.Inet6Gateway
|
||||||
}
|
}
|
||||||
if len(o.Inet6Address) > 0 {
|
if len(o.Inet6Address) > 0 {
|
||||||
if HasNextAddress(o.Inet6Address[0], 1) {
|
switch runtime.GOOS {
|
||||||
return o.Inet6Address[0].Addr().Next()
|
case "android":
|
||||||
} else if runtime.GOOS != "linux" {
|
case "linux":
|
||||||
|
if HasNextAddress(o.Inet6Address[0], 1) {
|
||||||
|
return o.Inet6Address[0].Addr().Next()
|
||||||
|
}
|
||||||
|
case "darwin":
|
||||||
return o.Inet6Address[0].Addr()
|
return o.Inet6Address[0].Addr()
|
||||||
|
default:
|
||||||
|
if HasNextAddress(o.Inet6Address[0], 1) {
|
||||||
|
return o.Inet6Address[0].Addr().Next()
|
||||||
|
} else {
|
||||||
|
return o.Inet6Address[0].Addr()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return netip.IPv6Unspecified()
|
return netip.IPv6Unspecified()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue