diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2020-09-08 09:53:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-08 09:53:22 +0200 |
commit | 601928cc8ee1788098ea3dcdc4180b75b380bc84 (patch) | |
tree | ddf35578569ee9689401058db54f0eaa5a2d4687 /src/lib/ndpi_main.c | |
parent | 5a3956fe27c910541ea87a87330f75cf7cf31abb (diff) | |
parent | df14d225f6dbec0139526ee17db42e06d8039fe7 (diff) |
Merge pull request #1008 from lnslbrty/add/dnscrypt
Improved dnscrypt v1/v2 protocol detection (and DoH provider).
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 |