/third_party/lwip/ |
D | 0067-fix-null-pointer-when-all-zero-address-listen.patch | 51 @@ -384,33 +414,15 @@ tcp_input(struct pbuf *p, struct netif *inp) 89 @@ -458,7 +470,7 @@ tcp_input(struct pbuf *p, struct netif *inp)
|
D | 0085-add-lwip-log-tcp_rst-tcp_abandon-tcp_abort.patch | 93 @@ -592,6 +592,7 @@ tcp_input(struct pbuf *p, struct netif *inp) 97 + LWIP_DEBUGF(GAZELLE_DEBUG_SERIOUS, ("tcp_input: received data although already closed,… 105 - LWIP_DEBUGF(TCP_RST_DEBUG, ("tcp_input: no PCB match found, resetting.\n")); 110 + ("tcp_input: no PCB match found, send RST, dest port=%d, src port=%d\n",
|
D | 0094-lwip-log-fix-reversed-port-in-tcp_input.patch | 4 Subject: [PATCH] lwip log: fix reversed port in tcp_input 17 ("tcp_input: no PCB match found, send RST, local_port=%d, remote_port=%d\n",
|
D | 0070-add-CHECKSUM_UDP-when-not-support-OFFLOAD_UDP_CHECKS.patch | 18 @@ -210,7 +210,7 @@ tcp_input(struct pbuf *p, struct netif *inp) 92 -// for tcp_input 95 +// for tcp_input and udp_input
|
D | 0050-lwip-reuse-ip-port.patch | 112 @@ -356,6 +356,9 @@ tcp_input(struct pbuf *p, struct netif *inp) 122 @@ -379,6 +382,30 @@ tcp_input(struct pbuf *p, struct netif *inp) 153 @@ -428,7 +455,12 @@ tcp_input(struct pbuf *p, struct netif *inp)
|
D | 0063-optimize-avoid-too-many-empty-acks-in-tcp_input.patch | 4 Subject: [PATCH] optimize: avoid too many empty acks in tcp_input
|
D | 0091-add-fd-log-info-and-fix-wrong-port-log-info.patch | 32 - ("tcp_input: no PCB match found, send RST, dest port=%d, src port=%d\n", 34 + ("tcp_input: no PCB match found, send RST, local_port=%d, remote_port=%d\n",
|
D | lwip.spec | 77 Patch9062: 0063-optimize-avoid-too-many-empty-acks-in-tcp_input.patch 110 Patch9093: 0094-lwip-log-fix-reversed-port-in-tcp_input.patch 162 - lwip log: fix reversed port in tcp_input 254 - optimize: avoid too many empty acks in tcp_input
|
D | 0023-refactor-event-and-checksum-offload-support.patch | 271 @@ -172,11 +176,24 @@ tcp_input(struct pbuf *p, struct netif *inp) 285 + LWIP_DEBUGF(TCP_INPUT_DEBUG, ("tcp_input: packet discarded due to failing checksum\n")); 290 …LWIP_DEBUGF(TCP_INPUT_DEBUG, ("tcp_input: packet discarded due to failing checksum 0x%04"X16_F"\n", 478 +// for tcp_input
|
D | 0053-cleancode-improve-lwipopts.h-readability.patch | 919 @@ -134,7 +134,7 @@ tcp_input(struct pbuf *p, struct netif *inp) 928 @@ -277,7 +277,7 @@ tcp_input(struct pbuf *p, struct netif *inp) 937 @@ -301,7 +301,7 @@ tcp_input(struct pbuf *p, struct netif *inp) 946 @@ -317,7 +317,7 @@ tcp_input(struct pbuf *p, struct netif *inp) 955 @@ -356,7 +356,7 @@ tcp_input(struct pbuf *p, struct netif *inp) 964 @@ -382,7 +382,7 @@ tcp_input(struct pbuf *p, struct netif *inp) 973 @@ -395,7 +395,7 @@ tcp_input(struct pbuf *p, struct netif *inp) 982 @@ -434,13 +434,13 @@ tcp_input(struct pbuf *p, struct netif *inp) 998 @@ -455,7 +455,7 @@ tcp_input(struct pbuf *p, struct netif *inp) 1007 @@ -528,7 +528,7 @@ tcp_input(struct pbuf *p, struct netif *inp)
|
D | 0002-adapt-lstack.patch | 2115 tcp_input(p, inp); 2116 + PERF_STOP_INCREASE_COUNT("tcp_input", PERF_LAYER_TCP); 2156 tcp_input(p, inp); 2157 + PERF_STOP_INCREASE_COUNT("tcp_input", PERF_LAYER_TCP); 2656 processing of TCP segments. They are set by the tcp_input() 2692 @@ -126,11 +127,20 @@ tcp_input(struct pbuf *p, struct netif *inp) 2705 LWIP_ASSERT("tcp_input: invalid pbuf", p != NULL); 2713 @@ -247,7 +257,15 @@ tcp_input(struct pbuf *p, struct netif *inp) 2726 LWIP_ASSERT("tcp_input: active pcb->state != CLOSED", pcb->state != CLOSED); 2727 LWIP_ASSERT("tcp_input: active pcb->state != TIME-WAIT", pcb->state != TIME_WAIT); [all …]
|
D | 0074-gazelle-offloads-are-registered-to-lwip.patch | 119 @@ -209,7 +209,7 @@ tcp_input(struct pbuf *p, struct netif *inp)
|
D | 0057-same-node-gazellectl-a.patch | 125 * reentering non-reentrant functions like tcp_input(). Packets passed to
|
D | 0080-enable-ipv6.patch | 181 @@ -309,8 +309,8 @@ tcp_input(struct pbuf *p, struct netif *inp)
|
D | CHANGELOG | 870 * tcp_impl.h, tcp.c, tcp_in.c: fixed bug #41318 (Bad memory ref in tcp_input() 1038 tcp_input function 1812 * tcp_in.c: Fixed bug #30577: tcp_input: don't discard ACK-only packets after 3841 old code using tcp_input with new define ETHARP_TCPIP_INPUT set to 0.
|
/third_party/lwip/test/unit/tcp/ |
D | tcp_helper.c | 266 tcp_input(p, inp); in test_tcp_input()
|
/third_party/lwip/src/include/lwip/priv/ |
D | tcp_priv.h | 77 void tcp_input (struct pbuf *p, struct netif *inp);
|
/third_party/lwip/src/core/ipv4/ |
D | ip4.c | 750 tcp_input(p, inp);
|
/third_party/lwip/src/core/ipv6/ |
D | ip6.c | 1137 tcp_input(p, inp);
|
/third_party/lwip/src/core/ |
D | tcp_in.c | 118 tcp_input(struct pbuf *p, struct netif *inp) function
|
/third_party/NuttX/ |
D | LICENSE | 234 net/tcp/tcp_input.c
|
D | ReleaseNotes | 11544 of previously lost packet finally succeeds, tcp_input receives the 17490 - net/tcp: In tcp_input(), add the logic to detect, decode, and 34795 * [#9074](https://github.com/apache/nuttx/pull/9074) net/tcp_input: drop SYN when no free node in t…
|