diff options
author | Luca Deri <deri@ntop.org> | 2018-05-11 13:48:14 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2018-05-11 13:48:14 +0200 |
commit | 564d622cc994dc0f2960b3beb0af1ebe02881187 (patch) | |
tree | 8ca5208c3ed89a4903c1450f9166ade03ed851af /src/lib/protocols/rtp.c | |
parent | 50216991bd41f0cdfea599a76ace08ebd00501d3 (diff) |
Added ndpi_fill_protocol_category call
Introduced intitial Skype in/out support
Diffstat (limited to 'src/lib/protocols/rtp.c')
-rw-r--r-- | src/lib/protocols/rtp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/protocols/rtp.c b/src/lib/protocols/rtp.c index 2f19acf46..38cd62504 100644 --- a/src/lib/protocols/rtp.c +++ b/src/lib/protocols/rtp.c @@ -103,9 +103,12 @@ static void ndpi_rtp_search(struct ndpi_detection_module_struct *ndpi_struct, ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_SKYPE, NDPI_PROTOCOL_UNKNOWN); return; } else /* RTCP */ { +#if 0 + /* If it's RTCP the RTCP decoder will catch it */ NDPI_LOG_INFO(ndpi_struct, "Found MS RTCP\n"); ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_RTCP, NDPI_PROTOCOL_UNKNOWN); return; +#endif } } |