• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1From 2d01f8467027e5a640ee6c7ed72d64d8e0247829 Mon Sep 17 00:00:00 2001
2From: jiangheng <jiangheng14@huawei.com>
3Date: Wed, 27 Dec 2023 10:40:54 +0800
4Subject: [PATCH] remove duplicate log
5
6---
7 src/core/tcp_in.c | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10diff --git a/src/core/tcp_in.c b/src/core/tcp_in.c
11index e9ab96f..69dcd26 100644
12--- a/src/core/tcp_in.c
13+++ b/src/core/tcp_in.c
14@@ -764,7 +764,7 @@ tcp_listen_input(struct tcp_pcb_listen *pcb)
15   if (flags & TCP_ACK) {
16     /* For incoming segments with the ACK flag set, respond with a
17        RST. */
18-    LWIP_DEBUGF(TCP_RST_DEBUG | GAZELLE_DEBUG_SERIOUS,
19+    LWIP_DEBUGF(TCP_RST_DEBUG,
20                 ("tcp_listen_input: ACK in LISTEN, send reset, local_port=%d, remote_port=%d\n",
21                 tcphdr->dest, tcphdr->src));
22     tcp_rst((const struct tcp_pcb *)pcb, ackno, seqno + tcplen, ip_current_dest_addr(),
23--
242.27.0
25
26