/third_party/lwip/src/core/ |
H A D | tcp_in.c | 725 npcb->snd_wnd = tcphdr->wnd; 726 npcb->snd_wnd_max = npcb->snd_wnd; 894 pcb->snd_wnd = tcphdr->wnd; 895 pcb->snd_wnd_max = pcb->snd_wnd; 1186 right_wnd_edge = pcb->snd_wnd + pcb->snd_wl2; 1191 (pcb->snd_wl2 == ackno && (u32_t)SND_WND_SCALE(pcb, tcphdr->wnd) > pcb->snd_wnd)) { 1192 pcb->snd_wnd = SND_WND_SCALE(pcb, tcphdr->wnd); 1195 if (pcb->snd_wnd_max < pcb->snd_wnd) { 1196 pcb->snd_wnd_max = pcb->snd_wnd; 1200 LWIP_DEBUGF(TCP_WND_DEBUG, ("tcp_receive: window update %"TCPWNDSIZE_F"\n", pcb->snd_wnd)); [all...] |
H A D | tcp_out.c | 1275 wnd = LWIP_MIN(pcb->snd_wnd, pcb->cwnd); in tcp_output() 1282 LWIP_DEBUGF(TCP_CWND_DEBUG, ("tcp_output: snd_wnd %"TCPWNDSIZE_F in tcp_output() 1285 pcb->snd_wnd, pcb->cwnd, wnd, pcb->lastack)); in tcp_output() 1296 ("tcp_output: snd_wnd %"TCPWNDSIZE_F", cwnd %"TCPWNDSIZE_F", wnd %"U32_F in tcp_output() 1298 pcb->snd_wnd, pcb->cwnd, wnd, in tcp_output() 1325 if (wnd == pcb->snd_wnd && pcb->unacked == NULL && pcb->persist_backoff == 0) { in tcp_output() 1361 LWIP_DEBUGF(TCP_CWND_DEBUG, ("tcp_output: snd_wnd %"TCPWNDSIZE_F", cwnd %"TCPWNDSIZE_F", wnd %"U32_F", effwnd %"U32_F", seq %"U32_F", ack %"U32_F", i %"S16_F"\n", in tcp_output() 1362 pcb->snd_wnd, pcb->cwnd, wnd, in tcp_output() 1810 pcb->ssthresh = LWIP_MIN(pcb->cwnd, pcb->snd_wnd) / 2; in tcp_rexmit_fast()
|
H A D | tcp.c | 1332 pcb->snd_wnd = TCP_WND; 1425 /* If snd_wnd is zero, send 1 byte probes */ 1426 if (pcb->snd_wnd == 0) { 1430 /* snd_wnd not fully closed, split unsent head and fill window */ 1432 if (tcp_split_unsent_seg(pcb, (u16_t)pcb->snd_wnd) == ERR_OK) { 1474 eff_wnd = LWIP_MIN(pcb->cwnd, pcb->snd_wnd);
|
/third_party/lwip/test/unit/tcp/ |
H A 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() 1574 /* persist timer should be started since 4th segment is stuck waiting on snd_wnd */ in START_TEST() [all...] |
H A D | tcp_helper.c | 247 pcb->snd_wnd = TCP_WND; in test_tcp_new_counters_pcb()
|
/third_party/musl/porting/uniproton/kernel/include/netinet/ |
H A D | tcp.h | 268 uint32_t snd_wnd; member
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/netinet/ |
H A D | tcp.h | 268 uint32_t snd_wnd; member
|
/third_party/musl/porting/liteos_a/kernel/include/netinet/ |
H A D | tcp.h | 280 uint32_t snd_wnd; member
|
/third_party/musl/porting/liteos_m/kernel/include/netinet/ |
H A D | tcp.h | 268 uint32_t snd_wnd; member
|
/third_party/musl/include/netinet/ |
H A D | tcp.h | 280 uint32_t snd_wnd; member
|
/third_party/lwip/src/include/lwip/ |
H A D | tcp.h | 323 tcpwnd_size_t snd_wnd; /* sender window */ member
|
/third_party/rust/crates/linux-raw-sys/src/aarch64/ |
H A D | general.rs | 3868 pub snd_wnd: __u32,
|
/third_party/rust/crates/linux-raw-sys/src/riscv64/ |
H A D | general.rs | 3866 pub snd_wnd: __u32,
|
/third_party/rust/crates/linux-raw-sys/src/riscv32/ |
H A D | general.rs | 3846 pub snd_wnd: __u32,
|
/third_party/rust/crates/linux-raw-sys/src/powerpc64/ |
H A D | general.rs | 3991 pub snd_wnd: __u32,
|
/third_party/rust/crates/linux-raw-sys/src/mips64/ |
H A D | general.rs | 4051 pub snd_wnd: __u32,
|
/third_party/rust/crates/linux-raw-sys/src/powerpc/ |
H A D | general.rs | 4019 pub snd_wnd: __u32,
|
/third_party/rust/crates/linux-raw-sys/src/mips/ |
H A D | general.rs | 4115 pub snd_wnd: __u32,
|
/third_party/rust/crates/linux-raw-sys/src/arm/ |
H A D | general.rs | 3952 pub snd_wnd: __u32,
|
/third_party/rust/crates/linux-raw-sys/src/sparc/ |
H A D | general.rs | 4230 pub snd_wnd: __u32,
|
/third_party/rust/crates/linux-raw-sys/src/s390x/ |
H A D | general.rs | 3926 pub snd_wnd: __u32,
|
/third_party/rust/crates/linux-raw-sys/src/sparc64/ |
H A D | general.rs | 4200 pub snd_wnd: __u32,
|
/third_party/rust/crates/linux-raw-sys/src/x32/ |
H A D | general.rs | 3895 pub snd_wnd: __u32,
|
/third_party/rust/crates/linux-raw-sys/src/x86/ |
H A D | general.rs | 3983 pub snd_wnd: __u32,
|
/third_party/rust/crates/linux-raw-sys/src/x86_64/ |
H A D | general.rs | 3904 pub snd_wnd: __u32,
|