Home
last modified time | relevance | path

Searched refs:snd_wl1 (Results 1 – 9 of 9) sorted by relevance

/third_party/lwip/src/core/
Dtcp_in.c688 npcb->snd_wl1 = seqno - 1;/* initialise to seqno-1 to force window update */
866 pcb->snd_wl1 = seqno - 1; /* initialise to seqno - 1 to force window update */
1155 if (TCP_SEQ_LT(pcb->snd_wl1, seqno) ||
1156 (pcb->snd_wl1 == seqno && TCP_SEQ_LT(pcb->snd_wl2, ackno)) ||
1164 pcb->snd_wl1 = seqno;
1173 pcb->lastack, ackno, pcb->snd_wl1, seqno, pcb->snd_wl2));
/third_party/musl/porting/liteos_a/kernel/include/netinet/
Dtcp.h267 uint32_t snd_wl1; member
/third_party/musl/porting/liteos_m/kernel/include/netinet/
Dtcp.h267 uint32_t snd_wl1; member
/third_party/musl/porting/uniproton/kernel/include/netinet/
Dtcp.h267 uint32_t snd_wl1; member
/third_party/musl/include/netinet/
Dtcp.h267 uint32_t snd_wl1; member
/third_party/musl/porting/liteos_m_iccarm/kernel/include/netinet/
Dtcp.h267 uint32_t snd_wl1; member
/third_party/musl/ndk_musl_include/netinet/
Dtcp.h267 uint32_t snd_wl1; member
/third_party/lwip/src/include/lwip/
Dtcp.h320 u32_t snd_wl1, snd_wl2; /* Sequence and acknowledgement numbers of last member
/third_party/lwip/
DCHANGELOG2423 * tcp_in.c: Fix bug #27199: use snd_wl2 instead of snd_wl1