Home
last modified time | relevance | path

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

/external/lib/lwip/core/
A Dtcp_in.c659 pcb->cwnd = ((pcb->cwnd == 1) ? (pcb->mss * 2) : pcb->mss);
712 old_cwnd = pcb->cwnd;
949 if ((u16_t)(pcb->cwnd + pcb->mss) > pcb->cwnd) {
950 pcb->cwnd += pcb->mss;
973 pcb->cwnd = pcb->ssthresh;
994 if (pcb->cwnd < pcb->ssthresh) {
995 if ((u16_t)(pcb->cwnd + pcb->mss) > pcb->cwnd) {
996 pcb->cwnd += pcb->mss;
1000 u16_t new_cwnd = (pcb->cwnd + pcb->mss * pcb->mss / pcb->cwnd);
1001 if (new_cwnd > pcb->cwnd) {
[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()
/external/lib/lwip/include/lwip/
A Dtcp.h219 u16_t cwnd; member

Completed in 11 milliseconds