From 29dd45838da84bfa43da615d7624373392861751 Mon Sep 17 00:00:00 2001 From: Luca Deri Date: Sun, 5 Jan 2020 18:24:58 +0100 Subject: Updated (C) --- example/ndpiReader.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'example') diff --git a/example/ndpiReader.c b/example/ndpiReader.c index 6a52cc953..40219acd4 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -2872,7 +2872,8 @@ static void ndpi_process_packet(u_char *args, */ static void runPcapLoop(u_int16_t thread_id) { if((!shutdown_app) && (ndpi_thread_info[thread_id].workflow->pcap_handle != NULL)) - pcap_loop(ndpi_thread_info[thread_id].workflow->pcap_handle, -1, &ndpi_process_packet, (u_char*)&thread_id); + if(pcap_loop(ndpi_thread_info[thread_id].workflow->pcap_handle, -1, &ndpi_process_packet, (u_char*)&thread_id) < 0) + printf("Error while reading pcap file: '%s'\n", pcap_geterr(ndpi_thread_info[thread_id].workflow->pcap_handle)); } /** -- cgit v1.2.3