From 044ed14b4f23708ec05f5b5c85ca29acbf4b59db Mon Sep 17 00:00:00 2001 From: Luca Deri Date: Thu, 24 Sep 2020 23:26:03 +0200 Subject: Various optimizations to reduce not-necessary calls Optimized various UDP dissectors Removed dead protocols such as pando and pplive --- src/lib/protocols/radius.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/lib/protocols/radius.c') diff --git a/src/lib/protocols/radius.c b/src/lib/protocols/radius.c index 5597f64a2..4e2782d9c 100644 --- a/src/lib/protocols/radius.c +++ b/src/lib/protocols/radius.c @@ -40,9 +40,11 @@ static void ndpi_check_radius(struct ndpi_detection_module_struct *ndpi_struct, if(packet->udp != NULL) { struct radius_header *h = (struct radius_header*)packet->payload; /* RFC2865: The minimum length is 20 and maximum length is 4096. */ - if((payload_len < 20) || (payload_len > 4096)) - return; - + if((payload_len < 20) || (payload_len > 4096)) { + NDPI_EXCLUDE_PROTO(ndpi_struct, flow); + return; + } + if((h->code > 0) && (h->code <= 13) && (ntohs(h->len) == payload_len)) { -- cgit v1.2.3