diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2023-05-28 12:59:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-28 12:59:18 +0200 |
commit | 7ce14da0c8c06967013503187081fa3a146ab8bb (patch) | |
tree | 0bd13c3aa54abf10d3901ef2f9f8d1435b912d88 /src/lib/protocols/zeromq.c | |
parent | 6da3474203fc2ff5981f6c73f7ad02fa81138166 (diff) |
Remove some useless checks (#1993)
In the main dissector callbacks the flow protocols are (almost) always
unknown. Only two exceptions:
* extra dissection data path
* HTTP sub-protocols
Diffstat (limited to 'src/lib/protocols/zeromq.c')
-rw-r--r-- | src/lib/protocols/zeromq.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/protocols/zeromq.c b/src/lib/protocols/zeromq.c index 6f86b856c..124bd4cc7 100644 --- a/src/lib/protocols/zeromq.c +++ b/src/lib/protocols/zeromq.c @@ -84,10 +84,7 @@ static void ndpi_check_zmq(struct ndpi_detection_module_struct *ndpi_struct, str static void ndpi_search_zmq(struct ndpi_detection_module_struct *ndpi_struct, struct ndpi_flow_struct *flow) { NDPI_LOG_DBG(ndpi_struct, "search ZMQ\n"); - /* skip marked packets */ - if(flow->detected_protocol_stack[0] != NDPI_PROTOCOL_ZMQ) { - ndpi_check_zmq(ndpi_struct, flow); - } + ndpi_check_zmq(ndpi_struct, flow); } |