mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 20:37:43 +03:00
Fix "Fix darwin routes"
This commit is contained in:
parent
5d9bd04495
commit
1c6d2891ab
1 changed files with 10 additions and 6 deletions
16
tun_rules.go
16
tun_rules.go
|
@ -109,9 +109,11 @@ func (o *Options) BuildAutoRouteRanges(underNetworkExtension bool) ([]netip.Pref
|
||||||
var inet4Ranges []netip.Prefix
|
var inet4Ranges []netip.Prefix
|
||||||
if len(o.Inet4RouteAddress) > 0 {
|
if len(o.Inet4RouteAddress) > 0 {
|
||||||
inet4Ranges = o.Inet4RouteAddress
|
inet4Ranges = o.Inet4RouteAddress
|
||||||
for _, address := range o.Inet4Address {
|
if runtime.GOOS == "darwin" {
|
||||||
if address.Bits() < 32 {
|
for _, address := range o.Inet4Address {
|
||||||
inet4Ranges = append(inet4Ranges, netipx.RangeOfPrefix(address).Prefixes()...)
|
if address.Bits() < 32 {
|
||||||
|
inet4Ranges = append(inet4Ranges, address.Masked())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if autoRouteUseSubRanges && !underNetworkExtension {
|
} else if autoRouteUseSubRanges && !underNetworkExtension {
|
||||||
|
@ -149,9 +151,11 @@ func (o *Options) BuildAutoRouteRanges(underNetworkExtension bool) ([]netip.Pref
|
||||||
var inet6Ranges []netip.Prefix
|
var inet6Ranges []netip.Prefix
|
||||||
if len(o.Inet6RouteAddress) > 0 {
|
if len(o.Inet6RouteAddress) > 0 {
|
||||||
inet6Ranges = o.Inet6RouteAddress
|
inet6Ranges = o.Inet6RouteAddress
|
||||||
for _, address := range o.Inet6Address {
|
if runtime.GOOS == "darwin" {
|
||||||
if address.Bits() < 32 {
|
for _, address := range o.Inet6Address {
|
||||||
inet6Ranges = append(inet6Ranges, netipx.RangeOfPrefix(address).Prefixes()...)
|
if address.Bits() < 32 {
|
||||||
|
inet6Ranges = append(inet6Ranges, address.Masked())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if autoRouteUseSubRanges && !underNetworkExtension {
|
} else if autoRouteUseSubRanges && !underNetworkExtension {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue