From 2286996223eeeab2597da533557173ad814efc41 Mon Sep 17 00:00:00 2001 From: bol-van Date: Wed, 16 Oct 2024 21:04:30 +0300 Subject: [PATCH] nfqws: remove tcp word from retrans threshold reached --- nfq/desync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nfq/desync.c b/nfq/desync.c index 3eb6253..1717fd3 100644 --- a/nfq/desync.c +++ b/nfq/desync.c @@ -327,7 +327,7 @@ static bool auto_hostlist_retrans(t_ctrack *ctrack, uint8_t l4proto, int thresho ctrack->req_retrans_counter++; if (ctrack->req_retrans_counter >= threshold) { - DLOG("retrans threshold reached : %u/%u\n",ctrack->req_retrans_counter, threshold); + DLOG("req retrans threshold reached : %u/%u\n",ctrack->req_retrans_counter, threshold); ctrack_stop_retrans_counter(ctrack); return true; }