aboutsummaryrefslogtreecommitdiff
path: root/src/lib/protocols/mpegts.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/protocols/mpegts.c')
-rw-r--r--src/lib/protocols/mpegts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/protocols/mpegts.c b/src/lib/protocols/mpegts.c
index f0e81ac5b..42527a6b8 100644
--- a/src/lib/protocols/mpegts.c
+++ b/src/lib/protocols/mpegts.c
@@ -42,12 +42,12 @@ void ndpi_search_mpegts(struct ndpi_detection_module_struct *ndpi_struct, struct
}
/* This looks MPEG TS */
- ndpi_int_add_connection(ndpi_struct, flow, NDPI_PROTOCOL_MPEGTS, NDPI_REAL_PROTOCOL);
+ ndpi_int_add_connection(ndpi_struct, flow, NDPI_PROTOCOL_MPEGTS/* , NDPI_REAL_PROTOCOL */);
return;
}
no_mpegts:
NDPI_LOG(NDPI_PROTOCOL_MPEGTS, ndpi_struct, NDPI_LOG_DEBUG, "Excluded MPEGTS.\n");
- NDPI_ADD_PROTOCOL_TO_BITMASK(flow->excluded_protocol_bitmask, NDPI_PROTOCOL_MPEGTS);
+ NDPI_ADD_PROTOCOL_TO_BITMASK(flow->excluded_protocol_bitmask/* , NDPI_PROTOCOL_MPEGTS */);
}
#endif