From 29c5cc39fb7f714897c3d6a3454e696e263fb9bc Mon Sep 17 00:00:00 2001 From: Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> Date: Wed, 25 Jan 2023 11:44:09 +0100 Subject: Some small changes (#1869) All dissector callbacks should not be exported by the library; make static some other local functions. The callback logic in `ndpiReader` has never been used. With internal libgcrypt, `gcry_control()` should always return no errors. We can check `categories` length at compilation time. --- example/reader_util.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'example/reader_util.c') diff --git a/example/reader_util.c b/example/reader_util.c index 67b27f70b..a3299f48b 100644 --- a/example/reader_util.c +++ b/example/reader_util.c @@ -1368,13 +1368,6 @@ void process_ndpi_collected_info(struct ndpi_workflow * workflow, struct ndpi_fl } if(flow->detection_completed && (!flow->check_extra_packets)) { - if(is_ndpi_proto(flow, NDPI_PROTOCOL_UNKNOWN)) { - if(workflow->__flow_giveup_callback != NULL) - workflow->__flow_giveup_callback(workflow, flow, workflow->__flow_giveup_udata); - } else { - if(workflow->__flow_detected_callback != NULL) - workflow->__flow_detected_callback(workflow, flow, workflow->__flow_detected_udata); - } flow->flow_payload = flow->ndpi_flow->flow_payload, flow->flow_payload_len = flow->ndpi_flow->flow_payload_len; flow->ndpi_flow->flow_payload = NULL; /* We'll free the memory */ -- cgit v1.2.3