Add 0.0.0.0 subnets again

This commit is contained in:
M66B 2021-02-23 17:33:22 +01:00
parent d3168ce871
commit b2289c7764
1 changed files with 1 additions and 2 deletions

View File

@ -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));
}