From 4d27001d1dea11c759d4fa9b5a318e35b412b0c2 Mon Sep 17 00:00:00 2001 From: Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> Date: Sat, 8 Jan 2022 20:40:10 +0100 Subject: Remove some unused fields (#1393) --- src/lib/protocols/someip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/protocols/someip.c') diff --git a/src/lib/protocols/someip.c b/src/lib/protocols/someip.c index 12174a505..5ac2a4f4b 100644 --- a/src/lib/protocols/someip.c +++ b/src/lib/protocols/someip.c @@ -204,13 +204,13 @@ void ndpi_search_someip (struct ndpi_detection_module_struct *ndpi_struct, //Filtering by port. //This check is NOT a 100% thing - these ports are mentioned in the documentation but the documentation also states they haven't been approved by IANA yet, and that the user is free to use different ports. //This is is PURELY for demo purposes and the rest of the check must be filled in later on! - if (packet->l4_protocol == IPPROTO_UDP){ + if (flow->l4_proto == IPPROTO_UDP){ if ((packet->udp->dest == ntohs(PORT_DEFAULT_CLIENT)) || (packet->udp->dest == ntohs(PORT_DEFAULT_SERVER)) || (packet->udp->dest == ntohs(PORT_DEFAULT_SD))) { ndpi_int_someip_add_connection(ndpi_struct, flow); return; } } - if (packet->l4_protocol == IPPROTO_TCP){ + if (flow->l4_proto == IPPROTO_TCP){ if ((packet->tcp->dest == ntohs(PORT_DEFAULT_CLIENT)) || (packet->tcp->dest == ntohs(PORT_DEFAULT_SERVER))) { ndpi_int_someip_add_connection(ndpi_struct, flow); return; -- cgit v1.2.3