diff options
author | Campus <campus@ntop.org> | 2016-11-15 12:02:02 +0100 |
---|---|---|
committer | Campus <campus@ntop.org> | 2016-11-15 12:02:02 +0100 |
commit | 1e19b689c4b50c69239bb207951a42b8a2ae8d45 (patch) | |
tree | c97bf0935baa847adb74512ae216a51cef36765d /src/lib | |
parent | 0f94a46f868e6818790b0c278121c081a63c9eeb (diff) |
minor fix for https://github.com/ntop/nDPI/commit/0f94a46f868e6818790b0c278121c081a63c9eeb
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/ndpi_main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index e30992fd5..108450eec 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -2618,6 +2618,9 @@ void ndpi_set_protocol_detection_bitmask2(struct ndpi_detection_module_struct *n /* DRDA */ init_drda_dissector(ndpi_struct, &a, detection_bitmask); + /* BJNP */ + init_bjnp_dissector(ndpi_struct, &a, detection_bitmask); + /*** Put false-positive sensitive protocols at the end ***/ /* SKYPE */ @@ -2626,9 +2629,6 @@ void ndpi_set_protocol_detection_bitmask2(struct ndpi_detection_module_struct *n /* BITTORRENT */ init_bittorrent_dissector(ndpi_struct, &a, detection_bitmask); - /* BJNP */ - init_bjnp_dissector(ndpi_struct, &a, detection_bitmask); - /* ----------------------------------------------------------------- */ |