mirror of
https://github.com/M66B/NetGuard.git
synced 2025-02-21 22:07:15 +00:00
Fixed allowed DNS TCP
This commit is contained in:
parent
12f34cb0dd
commit
7fdb9c26c3
1 changed files with 1 additions and 1 deletions
|
@ -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 || dport != 53))
|
||||
else if (protocol == IPPROTO_TCP && (!syn || (uid == 0 && dport == 53)))
|
||||
allowed = 1; // assume existing session
|
||||
else {
|
||||
jobject objPacket = create_packet(
|
||||
|
|
Loading…
Reference in a new issue