aboutsummaryrefslogtreecommitdiff
path: root/src/lib/protocols/rtp.c
diff options
context:
space:
mode:
authorLuca Deri <deri@ntop.org>2018-02-21 07:43:59 +0100
committerLuca Deri <deri@ntop.org>2018-02-21 07:43:59 +0100
commit06bb9a9c57cc1c6fa4d6a5f88cdeeb40d73a0866 (patch)
tree0d63edacd126ed2bb7ca5e4abd1209b26d0276a8 /src/lib/protocols/rtp.c
parent6e7a1022b21ebb214045e7dbf52b10939cb3d85c (diff)
Remove too strict check for RTP
Diffstat (limited to 'src/lib/protocols/rtp.c')
-rw-r--r--src/lib/protocols/rtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/protocols/rtp.c b/src/lib/protocols/rtp.c
index a61e732d2..c6fc29ead 100644
--- a/src/lib/protocols/rtp.c
+++ b/src/lib/protocols/rtp.c
@@ -122,7 +122,7 @@ void ndpi_search_rtp(struct ndpi_detection_module_struct *ndpi_struct, struct nd
/* printf("*** %s(pkt=%d)\n", __FUNCTION__, flow->packet_counter); */
if((packet->udp != NULL)
- && (ntohs(packet->udp->source) > 1023)
+ /* && (ntohs(packet->udp->source) > 1023) */
&& (ntohs(packet->udp->dest) > 1023))
ndpi_rtp_search(ndpi_struct, flow, packet->payload, packet->payload_packet_len);
}