diff options
author | Toni <matzeton@googlemail.com> | 2021-07-13 15:10:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-13 15:10:18 +0200 |
commit | e4453938d5329daaa0ea682bba55d354759c077e (patch) | |
tree | 52516639956d30eff17ff3c0a7b5e903ee89524e /src/lib/protocols/dnscrypt.c | |
parent | cccf794265dee24f25e16f21753972b20f7593c5 (diff) |
Improved dnscrypt midstream detection. (#1241)
* fixed skype false-positive detection of dnscrypt traffic
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/lib/protocols/dnscrypt.c')
-rw-r--r-- | src/lib/protocols/dnscrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/protocols/dnscrypt.c b/src/lib/protocols/dnscrypt.c index 6c89466f1..af147614a 100644 --- a/src/lib/protocols/dnscrypt.c +++ b/src/lib/protocols/dnscrypt.c @@ -38,7 +38,7 @@ void ndpi_search_dnscrypt(struct ndpi_detection_module_struct *ndpi_struct, NDPI_LOG_DBG(ndpi_struct, "search dnscrypt\n"); - if (flow->packet_counter > 2) + if (flow->packet_counter > 3) { NDPI_EXCLUDE_PROTO(ndpi_struct, flow); } |