diff options
author | Alfredo Cardigliano <cardigliano@ntop.org> | 2020-04-24 15:31:44 +0000 |
---|---|---|
committer | Alfredo Cardigliano <cardigliano@ntop.org> | 2020-04-24 15:31:44 +0000 |
commit | 4d746dabe99da7b193b1f1f74e15d480b83ff8fe (patch) | |
tree | 27eab5611c5b1114ce8c265527f051b2747f84e8 | |
parent | 0b702c20d32c4fab113f5c3da7e503f7fd1a9ec5 (diff) |
Enable IEC 60870-5-104 dissector
-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 01c5287e6..6364f2944 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -3412,6 +3412,9 @@ void ndpi_set_protocol_detection_bitmask2(struct ndpi_detection_module_struct *n /* S7 comm */ init_s7comm_dissector(ndpi_str, &a, detection_bitmask); + /* IEC 60870-5-104 */ + init_104_dissector(ndpi_str, &a, detection_bitmask); + #ifdef CUSTOM_NDPI_PROTOCOLS #include "../../../nDPI-custom/custom_ndpi_main_init.c" #endif |