mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 12:27:39 +03:00
Fix set gateway
This commit is contained in:
parent
edabb6d7ba
commit
d0887eabba
1 changed files with 12 additions and 8 deletions
4
tun.go
4
tun.go
|
@ -103,6 +103,7 @@ func (o *Options) Inet4GatewayAddr() netip.Addr {
|
||||||
case "darwin":
|
case "darwin":
|
||||||
return o.Inet4Address[0].Addr()
|
return o.Inet4Address[0].Addr()
|
||||||
default:
|
default:
|
||||||
|
if !o.InterfaceScope {
|
||||||
if HasNextAddress(o.Inet4Address[0], 1) {
|
if HasNextAddress(o.Inet4Address[0], 1) {
|
||||||
return o.Inet4Address[0].Addr().Next()
|
return o.Inet4Address[0].Addr().Next()
|
||||||
} else {
|
} else {
|
||||||
|
@ -110,6 +111,7 @@ func (o *Options) Inet4GatewayAddr() netip.Addr {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return netip.IPv4Unspecified()
|
return netip.IPv4Unspecified()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -127,6 +129,7 @@ func (o *Options) Inet6GatewayAddr() netip.Addr {
|
||||||
case "darwin":
|
case "darwin":
|
||||||
return o.Inet6Address[0].Addr()
|
return o.Inet6Address[0].Addr()
|
||||||
default:
|
default:
|
||||||
|
if !o.InterfaceScope {
|
||||||
if HasNextAddress(o.Inet6Address[0], 1) {
|
if HasNextAddress(o.Inet6Address[0], 1) {
|
||||||
return o.Inet6Address[0].Addr().Next()
|
return o.Inet6Address[0].Addr().Next()
|
||||||
} else {
|
} else {
|
||||||
|
@ -134,6 +137,7 @@ func (o *Options) Inet6GatewayAddr() netip.Addr {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return netip.IPv6Unspecified()
|
return netip.IPv6Unspecified()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue