diff options
author | Luca Deri <deri@ntop.org> | 2024-06-04 17:00:45 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2024-06-04 17:00:45 +0200 |
commit | 85587a8f9871f59a931634651fc3df52ca3e9aad (patch) | |
tree | f8fa6ea62189797653e16f63ee5334cf92192e00 | |
parent | 81e42b748e46666158596cc22224b0ec11d85be0 (diff) |
Fixes accounting of number of processed packets in ndpi_internal_detection_process_packet()
-rw-r--r-- | src/lib/ndpi_main.c | 2 |
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 */ |