Home
last modified time | relevance | path

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

/lib/liblwip/src/core/
Dtcp_in.c867 right_wnd_edge = pcb->snd_wnd + pcb->snd_wl2; in tcp_receive()
871 (pcb->snd_wl1 == seqno && TCP_SEQ_LT(pcb->snd_wl2, ackno)) || in tcp_receive()
872 (pcb->snd_wl2 == ackno && tcphdr->wnd > pcb->snd_wnd)) { in tcp_receive()
880 pcb->snd_wl2 = ackno; in tcp_receive()
898 pcb->lastack, ackno, pcb->snd_wl1, seqno, pcb->snd_wl2)); in tcp_receive()
929 if (pcb->snd_wl2 + pcb->snd_wnd == right_wnd_edge){ in tcp_receive()
Dtcp.c1324 pcb->snd_wl2 = iss; in tcp_alloc()
/lib/liblwip/src/include/lwip/
Dtcp.h224 u32_t snd_wl1, snd_wl2; /* Sequence and acknowledgement numbers of last member
/lib/liblwip/
DCHANGELOG1224 * tcp_in.c: Fix bug #27199: use snd_wl2 instead of snd_wl1