From cbe20d3740c19dd59150c9764a549857902d16b8 Mon Sep 17 00:00:00 2001 From: Luca Deri Date: Wed, 9 Oct 2019 22:25:40 +0200 Subject: Fixes for API changes --- example/reader_util.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'example/reader_util.c') 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); } } -- cgit v1.2.3