Home
last modified time | relevance | path

Searched refs:snd_wnd (Results 1 – 14 of 14) sorted by relevance

/third_party/lwip/src/core/
Dtcp_in.c702 npcb->snd_wnd = tcphdr->wnd;
703 npcb->snd_wnd_max = npcb->snd_wnd;
864 pcb->snd_wnd = tcphdr->wnd;
865 pcb->snd_wnd_max = pcb->snd_wnd;
1152 right_wnd_edge = pcb->snd_wnd + pcb->snd_wl2;
1157 (pcb->snd_wl2 == ackno && (u32_t)SND_WND_SCALE(pcb, tcphdr->wnd) > pcb->snd_wnd)) {
1158 pcb->snd_wnd = SND_WND_SCALE(pcb, tcphdr->wnd);
1161 if (pcb->snd_wnd_max < pcb->snd_wnd) {
1162 pcb->snd_wnd_max = pcb->snd_wnd;
1166 LWIP_DEBUGF(TCP_WND_DEBUG, ("tcp_receive: window update %"TCPWNDSIZE_F"\n", pcb->snd_wnd));
[all …]
Dtcp_out.c1263 wnd = LWIP_MIN(pcb->snd_wnd, pcb->cwnd); in tcp_output()
1273 pcb->snd_wnd, pcb->cwnd, wnd, pcb->lastack)); in tcp_output()
1286 pcb->snd_wnd, pcb->cwnd, wnd, in tcp_output()
1313 if (wnd == pcb->snd_wnd && pcb->unacked == NULL && pcb->persist_backoff == 0) { in tcp_output()
1350 pcb->snd_wnd, pcb->cwnd, wnd, in tcp_output()
1798 pcb->ssthresh = LWIP_MIN(pcb->cwnd, pcb->snd_wnd) / 2; in tcp_rexmit_fast()
Dtcp.c1155 pcb->snd_wnd = TCP_WND; in tcp_connect()
1249 if (pcb->snd_wnd == 0) { in tcp_slowtmr()
1255 if (tcp_split_unsent_seg(pcb, (u16_t)pcb->snd_wnd) == ERR_OK) { in tcp_slowtmr()
1297 eff_wnd = LWIP_MIN(pcb->cwnd, pcb->snd_wnd); in tcp_slowtmr()
/third_party/lwip/test/unit/tcp/
Dtest_tcp.c471 pcb->cwnd = pcb->snd_wnd; in START_TEST()
774 pcb->cwnd = pcb->snd_wnd; in START_TEST()
826 pcb->cwnd = pcb->snd_wnd; in test_tcp_tx_full_window_lost()
879 EXPECT(pcb->snd_wnd == 0); in test_tcp_tx_full_window_lost()
973 pcb->cwnd = pcb->snd_wnd; in START_TEST()
1427 EXPECT(pcb->snd_wnd == 0); in test_tcp_zwp_timeout_impl()
1461 EXPECT(pcb->snd_wnd == 0); in test_tcp_zwp_timeout_impl()
1537 pcb->snd_wnd = 3 * TCP_MSS; in START_TEST()
1569 EXPECT(pcb->snd_wnd == TCP_MSS / 2); in START_TEST()
1640 EXPECT(pcb->snd_wnd == TCP_MSS / 2); in START_TEST()
Dtcp_helper.c247 pcb->snd_wnd = TCP_WND; in test_tcp_new_counters_pcb()
/third_party/musl/porting/liteos_a/kernel/include/netinet/
Dtcp.h268 uint32_t snd_wnd; member
/third_party/musl/porting/liteos_m/kernel/include/netinet/
Dtcp.h268 uint32_t snd_wnd; member
/third_party/musl/porting/uniproton/kernel/include/netinet/
Dtcp.h268 uint32_t snd_wnd; member
/third_party/musl/include/netinet/
Dtcp.h268 uint32_t snd_wnd; member
/third_party/musl/porting/liteos_m_iccarm/kernel/include/netinet/
Dtcp.h268 uint32_t snd_wnd; member
/third_party/musl/ndk_musl_include/netinet/
Dtcp.h268 uint32_t snd_wnd; member
/third_party/lwip/src/include/lwip/
Dtcp.h323 tcpwnd_size_t snd_wnd; /* sender window */ member
/third_party/lwip/
DCHANGELOG1332 MSS > pcb->snd_wnd (by not creating segments bigger than half the window)
/third_party/NuttX/
DReleaseNotes30333 …* [#4273](https://github.com/apache/incubator-nuttx/pull/#4273) tcp: some fixes in snd_wnd process…