Home
last modified time | relevance | path

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

/third_party/lwip/
D0059-fix-last_unsent-last_unacked.patch22 - if (pcb->snd_wl2 + pcb->snd_wnd == right_wnd_edge) {
34 + if (pcb->snd_wl2 + pcb->snd_wnd == right_wnd_edge) {
D0046-add-dataack-when-recv-too-many-acks-with-data.patch30 + if (pcb->snd_wl2 + pcb->snd_wnd == right_wnd_edge) {
DCHANGELOG2423 * tcp_in.c: Fix bug #27199: use snd_wl2 instead of snd_wl1
/third_party/lwip/src/core/
Dtcp_in.c707 npcb->snd_wl2 = iss;
1186 right_wnd_edge = pcb->snd_wnd + pcb->snd_wl2;
1190 (pcb->snd_wl1 == seqno && TCP_SEQ_LT(pcb->snd_wl2, ackno)) ||
1191 (pcb->snd_wl2 == ackno && (u32_t)SND_WND_SCALE(pcb, tcphdr->wnd) > pcb->snd_wnd)) {
1199 pcb->snd_wl2 = ackno;
1207 pcb->lastack, ackno, pcb->snd_wl1, seqno, pcb->snd_wl2));
1237 if (pcb->snd_wl2 + pcb->snd_wnd == right_wnd_edge) {
Dtcp.c1326 pcb->snd_wl2 = iss - 1;
/third_party/lwip/src/include/lwip/
Dtcp.h320 u32_t snd_wl1, snd_wl2; /* Sequence and acknowledgement numbers of last member
/third_party/lwip/test/unit/tcp/
Dtcp_helper.c156 pcb->snd_wl2 = iss; in tcp_set_state()