mirror of
https://github.com/M66B/NetGuard.git
synced 2025-02-01 12:21:38 +00:00
Add 0.0.0.0 subnets again
This commit is contained in:
parent
d3168ce871
commit
b2289c7764
1 changed files with 1 additions and 2 deletions
|
@ -1390,8 +1390,7 @@ public class ServiceSinkhole extends VpnService implements SharedPreferences.OnS
|
|||
Log.i(TAG, "Exclude " + exclude.getStart().getHostAddress() + "..." + exclude.getEnd().getHostAddress());
|
||||
for (IPUtil.CIDR include : IPUtil.toCIDR(start, IPUtil.minus1(exclude.getStart())))
|
||||
try {
|
||||
if (!"0.0.0.0".equals(include.address.getHostAddress()))
|
||||
builder.addRoute(include.address, include.prefix);
|
||||
builder.addRoute(include.address, include.prefix);
|
||||
} catch (Throwable ex) {
|
||||
Log.e(TAG, ex.toString() + "\n" + Log.getStackTraceString(ex));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue