mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-05 12:57:38 +03:00
Fix "Remove unnecessary addRoute"
This commit is contained in:
parent
03d5304abb
commit
0cb3cf62ed
1 changed files with 4 additions and 0 deletions
|
@ -83,6 +83,8 @@ class VPNService : VpnService(), PlatformInterfaceWrapper {
|
||||||
while (inet4RouteAddress.hasNext()) {
|
while (inet4RouteAddress.hasNext()) {
|
||||||
builder.addRoute(inet4RouteAddress.next().toIpPrefix())
|
builder.addRoute(inet4RouteAddress.next().toIpPrefix())
|
||||||
}
|
}
|
||||||
|
} else if (options.inet4Address.hasNext()) {
|
||||||
|
builder.addRoute("0.0.0.0", 0)
|
||||||
}
|
}
|
||||||
|
|
||||||
val inet6RouteAddress = options.inet6RouteAddress
|
val inet6RouteAddress = options.inet6RouteAddress
|
||||||
|
@ -90,6 +92,8 @@ class VPNService : VpnService(), PlatformInterfaceWrapper {
|
||||||
while (inet6RouteAddress.hasNext()) {
|
while (inet6RouteAddress.hasNext()) {
|
||||||
builder.addRoute(inet6RouteAddress.next().toIpPrefix())
|
builder.addRoute(inet6RouteAddress.next().toIpPrefix())
|
||||||
}
|
}
|
||||||
|
} else if (options.inet6Address.hasNext()) {
|
||||||
|
builder.addRoute("::", 0)
|
||||||
}
|
}
|
||||||
|
|
||||||
val inet4RouteExcludeAddress = options.inet4RouteExcludeAddress
|
val inet4RouteExcludeAddress = options.inet4RouteExcludeAddress
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue