Home
last modified time | relevance | path

Searched refs:tcp_input (Results 1 – 22 of 22) sorted by relevance

/third_party/lwip/
D0067-fix-null-pointer-when-all-zero-address-listen.patch51 @@ -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)
D0085-add-lwip-log-tcp_rst-tcp_abandon-tcp_abort.patch93 @@ -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",
D0094-lwip-log-fix-reversed-port-in-tcp_input.patch4 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",
D0070-add-CHECKSUM_UDP-when-not-support-OFFLOAD_UDP_CHECKS.patch18 @@ -210,7 +210,7 @@ tcp_input(struct pbuf *p, struct netif *inp)
92 -// for tcp_input
95 +// for tcp_input and udp_input
D0050-lwip-reuse-ip-port.patch112 @@ -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)
D0063-optimize-avoid-too-many-empty-acks-in-tcp_input.patch4 Subject: [PATCH] optimize: avoid too many empty acks in tcp_input
D0091-add-fd-log-info-and-fix-wrong-port-log-info.patch32 - ("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",
Dlwip.spec77 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
D0023-refactor-event-and-checksum-offload-support.patch271 @@ -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
D0053-cleancode-improve-lwipopts.h-readability.patch919 @@ -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)
D0002-adapt-lstack.patch2115 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 …]
D0074-gazelle-offloads-are-registered-to-lwip.patch119 @@ -209,7 +209,7 @@ tcp_input(struct pbuf *p, struct netif *inp)
D0057-same-node-gazellectl-a.patch125 * reentering non-reentrant functions like tcp_input(). Packets passed to
D0080-enable-ipv6.patch181 @@ -309,8 +309,8 @@ tcp_input(struct pbuf *p, struct netif *inp)
DCHANGELOG870 * 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/
Dtcp_helper.c266 tcp_input(p, inp); in test_tcp_input()
/third_party/lwip/src/include/lwip/priv/
Dtcp_priv.h77 void tcp_input (struct pbuf *p, struct netif *inp);
/third_party/lwip/src/core/ipv4/
Dip4.c750 tcp_input(p, inp);
/third_party/lwip/src/core/ipv6/
Dip6.c1137 tcp_input(p, inp);
/third_party/lwip/src/core/
Dtcp_in.c118 tcp_input(struct pbuf *p, struct netif *inp) function
/third_party/NuttX/
DLICENSE234 net/tcp/tcp_input.c
DReleaseNotes11544 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…