diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2024-05-06 10:19:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-06 10:19:46 +0200 |
commit | 266af0275241b96346372bbae936cd3dd1a35159 (patch) | |
tree | cbadf21cb1852ff65b1c87404c0fb0ba6d8f86e6 /src/lib/ndpi_main.c | |
parent | a1845da3594c080bc59318ea9b465e15f0c5012c (diff) |
Merge RTP and RTCP logic (#2416)
Avoid code duplication between these two protocols.
We remove support for RTCP over TCP; it is quite rare to find this kind
of traffic and, more important, we have never had support for RTP
over TCP: we should try to add both detecion as follow-up.
Fix a message log in the LINE code
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index ee58c2cdb..2a081f8a4 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -5745,9 +5745,6 @@ static int ndpi_callback_init(struct ndpi_detection_module_struct *ndpi_str) { /* SKINNY */ init_skinny_dissector(ndpi_str, &a); - /* RTCP */ - init_rtcp_dissector(ndpi_str, &a); - /* RSYNC */ init_rsync_dissector(ndpi_str, &a); |