Skip to content

Commit

Permalink
Do not capture 224.0.0.0/4 multicast traffic
Browse files Browse the repository at this point in the history
Possible fix for SSDP discovery, see #359
  • Loading branch information
emanuele-f committed Nov 13, 2023
1 parent 3c6bc51 commit 500db74
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,11 @@ else if(mSettings.dump_mode == Prefs.DumpMode.PCAP_FILE) {
if (getIPv4Enabled() == 1) {
builder.addAddress(vpn_ipv4, 30)
.addRoute("0.0.0.0", 1)
.addRoute("128.0.0.0", 1)

// 128.0.0.0/1 - 224.0.0.0/4
.addRoute("128.0.0.0", 2)
.addRoute("192.0.0.0", 3)
.addRoute("240.0.0.0", 4)
.addDnsServer(vpn_dns);
}

Expand Down

0 comments on commit 500db74

Please sign in to comment.