diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-02-06 08:48:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-02-06 08:48:28 +0000 |
commit | 22a29c0010e8ecee203d610e2477150004c74cf6 (patch) | |
tree | 92257b3ce72b5e0ac22ab592272c777420e497db /plugins/anonaes128 | |
parent | Releasing debian version 2.1.0-2. (diff) | |
download | dnscap-22a29c0010e8ecee203d610e2477150004c74cf6.tar.xz dnscap-22a29c0010e8ecee203d610e2477150004c74cf6.zip |
Merging upstream version 2.1.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'plugins/anonaes128')
-rw-r--r-- | plugins/anonaes128/anonaes128.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/plugins/anonaes128/anonaes128.c b/plugins/anonaes128/anonaes128.c index aa9539c..56c8656 100644 --- a/plugins/anonaes128/anonaes128.c +++ b/plugins/anonaes128/anonaes128.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2022, OARC, Inc. + * Copyright (c) 2018-2023, OARC, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -246,8 +246,10 @@ int anonaes128_filter(const char* descr, iaddr* from, iaddr* to, uint8_t proto, for (;;) { if (only_clients && sport == dns_port) { - from = 0; - break; + if (sport != dport) { + from = 0; + break; + } } if (only_servers && sport != dns_port) { from = 0; @@ -292,8 +294,10 @@ int anonaes128_filter(const char* descr, iaddr* from, iaddr* to, uint8_t proto, for (;;) { if (only_clients && dport == dns_port) { - to = 0; - break; + if (dport != sport) { + to = 0; + break; + } } if (only_servers && dport != dns_port) { to = 0; |