mirror of https://github.com/M66B/NetGuard.git
Skip logging of TCP DNS
This commit is contained in:
parent
467a74a464
commit
cc54e5cc0a
|
@ -293,7 +293,7 @@ void handle_ip(const struct arguments *args,
|
|||
struct allowed *redirect = NULL;
|
||||
if (protocol == IPPROTO_UDP && has_udp_session(args, pkt, payload))
|
||||
allowed = 1; // could be a lingering/blocked session
|
||||
else if (protocol == IPPROTO_TCP && !syn)
|
||||
else if (protocol == IPPROTO_TCP && (!syn || dport != 53))
|
||||
allowed = 1; // assume existing session
|
||||
else {
|
||||
jobject objPacket = create_packet(
|
||||
|
|
Loading…
Reference in New Issue