mirror of
https://github.com/M66B/NetGuard.git
synced 2025-02-01 12:21:38 +00:00
Added exception for SFR MMS
This commit is contained in:
parent
a9c4da69c7
commit
7fedb27f1d
1 changed files with 4 additions and 0 deletions
|
@ -1380,6 +1380,10 @@ public class ServiceSinkhole extends VpnService implements SharedPreferences.OnS
|
|||
listExclude.add(new IPUtil.CIDR("97.0.0.0", 10)); // 97.0.0.0 - 97.63.255.255
|
||||
}
|
||||
|
||||
// SFR MMS
|
||||
if (config.mnc == 10 && config.mcc == 208)
|
||||
listExclude.add(new IPUtil.CIDR("10.151.0.0", 24));
|
||||
|
||||
// Broadcast
|
||||
listExclude.add(new IPUtil.CIDR("224.0.0.0", 3));
|
||||
|
||||
|
|
Loading…
Reference in a new issue