aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Deri <deri@ntop.org>2024-06-04 17:00:45 +0200
committerLuca Deri <deri@ntop.org>2024-06-04 17:00:45 +0200
commit85587a8f9871f59a931634651fc3df52ca3e9aad (patch)
treef8fa6ea62189797653e16f63ee5334cf92192e00
parent81e42b748e46666158596cc22224b0ec11d85be0 (diff)
Fixes accounting of number of processed packets in ndpi_internal_detection_process_packet()
-rw-r--r--src/lib/ndpi_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c
index 942054b06..30411df9e 100644
--- a/src/lib/ndpi_main.c
+++ b/src/lib/ndpi_main.c
@@ -8315,6 +8315,7 @@ static ndpi_protocol ndpi_internal_detection_process_packet(struct ndpi_detectio
if((!flow) || (!ndpi_str) || (ndpi_str->finalized != 1))
return(ret);
+ flow->num_processed_pkts++;
packet = &ndpi_str->packet;
NDPI_LOG_DBG(ndpi_str, "[%d/%d] START packet processing\n",
@@ -8337,7 +8338,6 @@ static ndpi_protocol ndpi_internal_detection_process_packet(struct ndpi_detectio
return(ret); /* Avoid spending too much time with this flow */
}
- flow->num_processed_pkts++;
ndpi_str->current_ts = current_time_ms;
/* Init default */