diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-09-06 23:23:13 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-09-06 23:24:55 +0200 |
commit | 799a6abfe6ae03a8385725e100095c7044c993b5 (patch) | |
tree | ff53fc6f60b6ba828146116371d0919bca08291e /src/lib/ndpi_main.c | |
parent | 8ed6409b350a8838b7905aa48b47e430ed48f959 (diff) |
Improved dnscrypt v1/v2 protocol detection.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index efd8a18a5..564f8978d 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -3358,6 +3358,9 @@ void ndpi_set_protocol_detection_bitmask2(struct ndpi_detection_module_struct *n /* SOAP */ init_soap_dissector(ndpi_str, &a, detection_bitmask); + /* DNScrypt */ + init_dnscrypt_dissector(ndpi_str, &a, detection_bitmask); + #ifdef CUSTOM_NDPI_PROTOCOLS #include "../../../nDPI-custom/custom_ndpi_main_init.c" #endif |