mirror of https://github.com/M66B/NetGuard.git
ICMP has no real port numbers
This commit is contained in:
parent
dc93dc4ad2
commit
fd022f4065
|
@ -1102,6 +1102,9 @@ public class SinkholeService extends VpnService implements SharedPreferences.OnS
|
||||||
if (packet.uid == Process.myUid())
|
if (packet.uid == Process.myUid())
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
if (packet.protocol == 1 || packet.protocol == 58) // ICMP
|
||||||
|
packet.dport = 0;
|
||||||
|
|
||||||
packet.allowed = false;
|
packet.allowed = false;
|
||||||
if (prefs.getBoolean("filter", false)) {
|
if (prefs.getBoolean("filter", false)) {
|
||||||
if (packet.uid < 0) // unknown
|
if (packet.uid < 0) // unknown
|
||||||
|
|
Loading…
Reference in New Issue