Searched refs:snd_wnd (Results 1 – 14 of 14) sorted by relevance
/third_party/lwip/src/core/ |
D | tcp_in.c | 702 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 …]
|
D | tcp_out.c | 1263 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()
|
D | tcp.c | 1155 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/ |
D | test_tcp.c | 471 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()
|
D | tcp_helper.c | 247 pcb->snd_wnd = TCP_WND; in test_tcp_new_counters_pcb()
|
/third_party/musl/porting/liteos_a/kernel/include/netinet/ |
D | tcp.h | 268 uint32_t snd_wnd; member
|
/third_party/musl/porting/liteos_m/kernel/include/netinet/ |
D | tcp.h | 268 uint32_t snd_wnd; member
|
/third_party/musl/porting/uniproton/kernel/include/netinet/ |
D | tcp.h | 268 uint32_t snd_wnd; member
|
/third_party/musl/include/netinet/ |
D | tcp.h | 268 uint32_t snd_wnd; member
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/netinet/ |
D | tcp.h | 268 uint32_t snd_wnd; member
|
/third_party/musl/ndk_musl_include/netinet/ |
D | tcp.h | 268 uint32_t snd_wnd; member
|
/third_party/lwip/src/include/lwip/ |
D | tcp.h | 323 tcpwnd_size_t snd_wnd; /* sender window */ member
|
/third_party/lwip/ |
D | CHANGELOG | 1332 MSS > pcb->snd_wnd (by not creating segments bigger than half the window)
|
/third_party/NuttX/ |
D | ReleaseNotes | 30333 …* [#4273](https://github.com/apache/incubator-nuttx/pull/#4273) tcp: some fixes in snd_wnd process…
|