aboutsummaryrefslogtreecommitdiff
path: root/example/reader_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'example/reader_util.c')
-rw-r--r--example/reader_util.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/example/reader_util.c b/example/reader_util.c
index 050ccc556..8848f6f05 100644
--- a/example/reader_util.c
+++ b/example/reader_util.c
@@ -1238,10 +1238,13 @@ static struct ndpi_proto packet_processing(struct ndpi_workflow * workflow,
if(ndpi_flow && ndpi_flow->check_extra_packets)
flow->check_extra_packets = 1;
- if(flow->detected_protocol.app_protocol == NDPI_PROTOCOL_UNKNOWN)
+ if(flow->detected_protocol.app_protocol == NDPI_PROTOCOL_UNKNOWN) {
+ u_int8_t proto_guessed;
+
flow->detected_protocol = ndpi_detection_giveup(workflow->ndpi_struct, flow->ndpi_flow,
- enable_protocol_guess);
-
+ enable_protocol_guess, &proto_guessed);
+ }
+
process_ndpi_collected_info(workflow, flow);
}
}