Home
last modified time | relevance | path

Searched refs:cwnd (Results 1 – 4 of 4) sorted by relevance

/lk-master/external/lib/lwip/core/
A Dtcp_in.c651 pcb->cwnd = ((pcb->cwnd == 1) ? (pcb->mss * 2) : pcb->mss); in tcp_process()
704 old_cwnd = pcb->cwnd; in tcp_process()
941 if ((u16_t)(pcb->cwnd + pcb->mss) > pcb->cwnd) { in tcp_receive()
942 pcb->cwnd += pcb->mss; in tcp_receive()
965 pcb->cwnd = pcb->ssthresh; in tcp_receive()
986 if (pcb->cwnd < pcb->ssthresh) { in tcp_receive()
987 if ((u16_t)(pcb->cwnd + pcb->mss) > pcb->cwnd) { in tcp_receive()
988 pcb->cwnd += pcb->mss; in tcp_receive()
992 u16_t new_cwnd = (pcb->cwnd + pcb->mss * pcb->mss / pcb->cwnd); in tcp_receive()
993 if (new_cwnd > pcb->cwnd) { in tcp_receive()
[all …]
A Dtcp_out.c918 wnd = LWIP_MIN(pcb->snd_wnd, pcb->cwnd); in tcp_output()
951 pcb->snd_wnd, pcb->cwnd, wnd, pcb->lastack)); in tcp_output()
956 pcb->snd_wnd, pcb->cwnd, wnd, in tcp_output()
979 pcb->snd_wnd, pcb->cwnd, wnd, in tcp_output()
1334 if (pcb->cwnd > pcb->snd_wnd) { in tcp_rexmit_fast()
1337 pcb->ssthresh = pcb->cwnd / 2; in tcp_rexmit_fast()
1349 pcb->cwnd = pcb->ssthresh + 3 * pcb->mss; in tcp_rexmit_fast()
A Dtcp.c756 pcb->cwnd = 1; in tcp_connect()
864 eff_wnd = LWIP_MIN(pcb->cwnd, pcb->snd_wnd); in tcp_slowtmr()
869 pcb->cwnd = pcb->mss; in tcp_slowtmr()
872 pcb->cwnd, pcb->ssthresh)); in tcp_slowtmr()
1322 pcb->cwnd = 1; in tcp_alloc()
/lk-master/external/lib/lwip/include/lwip/
A Dtcp.h219 u16_t cwnd; member

Completed in 10 milliseconds