diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2022-03-08 00:21:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 00:21:51 +0100 |
commit | 269be6c7ef038d2de377546813fbb2bacf80e510 (patch) | |
tree | 33119a500bca58ce4694c6223481506587aec648 /src/lib/ndpi_main.c | |
parent | f91218360b8bce56dd96fac888c83a6a1c6bdc32 (diff) |
Some small fixes (#1481)
FTP: if the authentication fails, stop analyzing the flow
WSD: call the initialization routine; the dissector code has never been
triggered
MINING: fix dissection
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 c1fb6fc1d..187081c1d 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -4280,6 +4280,9 @@ void ndpi_set_protocol_detection_bitmask2(struct ndpi_detection_module_struct *n /* EthernetIP */ init_ethernet_ip_dissector(ndpi_str, &a, detection_bitmask); + /* WSD */ + init_wsd_dissector(ndpi_str, &a, detection_bitmask); + #ifdef CUSTOM_NDPI_PROTOCOLS #include "../../../nDPI-custom/custom_ndpi_main_init.c" #endif |