diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-06-13 18:44:26 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-06-13 18:44:26 +0200 |
commit | 5f7eb0d5ac3adda0a9e9f4ac45b5c15e73134277 (patch) | |
tree | cdda6a2c2e1246a0ee2a40dafa7d9686b389f7b6 | |
parent | dc0ecf454a2a91406f2e1e01a0187036c3a5d8e7 (diff) |
do not print ThreadID during flow free'ing
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -475,7 +475,7 @@ static void ndpi_process_packet(uint8_t * const args, while (workflow->cur_idle_flows > 0) { struct nDPId_flow_info * const f = (struct nDPId_flow_info *)workflow->ndpi_flows_idle[--workflow->cur_idle_flows]; - printf("ThreadID %d, free idle flow with id %u\n", thread_index, f->flow_id); + printf("Free idle flow with id %u\n", f->flow_id); ndpi_tdelete(f, &workflow->ndpi_flows_active[workflow->idle_scan_index], ndpi_workflow_node_cmp); ndpi_flow_info_freer(f); |