Fixes for API changes

This commit is contained in:
Luca Deri 2019-10-09 22:25:40 +02:00
parent 21bc84e837
commit cbe20d3740
2 changed files with 18 additions and 10 deletions

View file

@ -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);
}
}