diff options
Diffstat (limited to 'src/lib/protocols/rtp.c')
-rw-r--r-- | src/lib/protocols/rtp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/protocols/rtp.c b/src/lib/protocols/rtp.c index 078550c5b..7977f79a8 100644 --- a/src/lib/protocols/rtp.c +++ b/src/lib/protocols/rtp.c @@ -239,7 +239,8 @@ static void ndpi_rtp_search(struct ndpi_detection_module_struct *ndpi_struct, NDPI_LOG_DBG(ndpi_struct, "search RTP\n"); if(d_port == 5355 || /* LLMNR_PORT */ - d_port == 5353 /* MDNS_PORT */) { + d_port == 5353 || /* MDNS_PORT */ + d_port == 9600 /* FINS_PORT */) { NDPI_EXCLUDE_PROTO(ndpi_struct, flow); return; } |