diff options
author | Michele Campus <fci1908@gmail.com> | 2015-06-29 17:06:04 +0200 |
---|---|---|
committer | Michele Campus <fci1908@gmail.com> | 2015-06-29 17:06:04 +0200 |
commit | a968718b52d461982c492d882d41d0580ddd7a12 (patch) | |
tree | 43e7ee1fd767714f8b7ee14e63805123cbd4249b /src/lib/protocols/mpegts.c | |
parent | 83d46d02d4407d9930d72140f5d1768bc6c7093b (diff) |
no_real for mpegts.c
Diffstat (limited to 'src/lib/protocols/mpegts.c')
-rw-r--r-- | src/lib/protocols/mpegts.c | 4 |
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 |