aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimone Mainardi <mainardi@ntop.org>2019-12-17 18:12:15 +0100
committerSimone Mainardi <mainardi@ntop.org>2019-12-17 18:12:15 +0100
commit09cd95d54ab5141795a0653b1f6a6149725dbbf7 (patch)
tree7a53ba36e2a7d3ec0df5a79b4bbfff5dc091c071
parente21fe5d594e42cb7add0f86ad2b625a0693e8ba9 (diff)
Fixes informative subprotocols
Wrongly marked subprotocols were causing issues on ntopng. This fixes https://github.com/ntop/ntopng/issues/3129
-rw-r--r--src/lib/ndpi_main.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c
index 95f9d1268..c2fe18556 100644
--- a/src/lib/ndpi_main.c
+++ b/src/lib/ndpi_main.c
@@ -256,10 +256,6 @@ u_int8_t ndpi_is_subprotocol_informative(struct ndpi_detection_module_struct *nd
switch(protoId) {
/* All dissectors that have calls to ndpi_match_host_subprotocol() */
case NDPI_PROTOCOL_DNS:
- case NDPI_PROTOCOL_HTTP:
- case NDPI_PROTOCOL_TLS:
- case NDPI_PROTOCOL_QUIC:
- case NDPI_PROTOCOL_FBZERO:
return(1);
break;