diff options
author | Luca Deri <deri@ntop.org> | 2021-02-10 12:20:48 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2021-02-10 15:22:20 +0100 |
commit | e2f6569adb62488b497d3bd6901308286fe8451d (patch) | |
tree | 60e304d0a2ed1548b465084d8078724990f8bb24 /src/lib/ndpi_main.c | |
parent | 0de3d4c37a06b800b740166b83a8ed108fbf76a4 (diff) |
Fixed CPHA missing protocol initialization
Improved IEC104 and IRC detection
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 385b869e5..58b48d2c2 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -3116,6 +3116,9 @@ void ndpi_set_protocol_detection_bitmask2(struct ndpi_detection_module_struct *n /* check_mk */ init_checkmk_dissector(ndpi_str, &a, detection_bitmask); + /* cpha */ + init_cpha_dissector(ndpi_str, &a, detection_bitmask); + /* AIMINI */ init_aimini_dissector(ndpi_str, &a, detection_bitmask); |