From 1f5e2d75db1d1e32c40fc24c7c1333e27a30b85f Mon Sep 17 00:00:00 2001 From: jeka Date: Tue, 7 Apr 2026 00:34:25 +0300 Subject: [PATCH] 1 --- src/etcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etcp.c b/src/etcp.c index 5eb49ab..efbff7b 100644 --- a/src/etcp.c +++ b/src/etcp.c @@ -973,7 +973,7 @@ void etcp_ack_recv(struct ETCP_CONN* etcp, uint32_t seq, uint16_t ts, uint16_t d etcp->bytes_sent_total += acked_pkt->ll.len; etcp->ack_packets_count++; - DEBUG_DEBUG(DEBUG_CATEGORY_ETCP, "[%s] removed packet seq=%u from wait_ack, unacked_bytes now %u total acked=%u", etcp->log_name, seq, etcp->unacked_bytes, etcp->ack_packets_count); + DEBUG_DEBUG(DEBUG_CATEGORY_ETCP, "[%s] TX removed packet seq=%u from wait_ack, unacked_bytes now %u total acked=%u", etcp->log_name, seq, etcp->unacked_bytes, etcp->ack_packets_count); if (acked_pkt->ll.dgram) { memory_pool_free(etcp->instance->data_pool, acked_pkt->ll.dgram);