Home
last modified time | relevance | path

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

/external/syslinux/core/lwip/src/core/
Dtcp_in.c486 npcb->snd_wl1 = seqno - 1;/* initialise to seqno-1 to force window update */ in tcp_listen_input()
636 pcb->snd_wl1 = seqno - 1; /* initialise to seqno - 1 to force window update */ in tcp_process()
861 if (TCP_SEQ_LT(pcb->snd_wl1, seqno) || in tcp_receive()
862 (pcb->snd_wl1 == seqno && TCP_SEQ_LT(pcb->snd_wl2, ackno)) || in tcp_receive()
865 pcb->snd_wl1 = seqno; in tcp_receive()
877 pcb->lastack, ackno, pcb->snd_wl1, seqno, pcb->snd_wl2)); in tcp_receive()
/external/kernel-headers/original/uapi/linux/
Dtcp.h126 __u32 snd_wl1; member
/external/syslinux/core/lwip/src/include/lwip/
Dtcp.h224 u32_t snd_wl1, snd_wl2; /* Sequence and acknowledgement numbers of last member
/external/syslinux/core/lwip/
DCHANGELOG925 * tcp_in.c: Fix bug #27199: use snd_wl2 instead of snd_wl1