Home
last modified time | relevance | path

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

/components/net/lwip/lwip-2.1.2/src/core/
A Dtcp_in.c1154 if (TCP_SEQ_LT(pcb->snd_wl1, seqno) ||
1155 (pcb->snd_wl1 == seqno && TCP_SEQ_LT(pcb->snd_wl2, ackno)) ||
1344 if (pcb->rttest && TCP_SEQ_LT(pcb->rtseq, ackno)) {
1445 if (TCP_SEQ_LT(seqno, pcb->rcv_nxt)) {
1674 … u32_t sackbeg = TCP_SEQ_LT(seqno, pcb->ooseq->tcphdr->seqno) ? seqno : pcb->ooseq->tcphdr->seqno;
1705 if (TCP_SEQ_LT(seqno, next->tcphdr->seqno)) {
2052 if ((pcb->flags & TF_SACK) == 0 || !TCP_SEQ_LT(left, right)) {
2122 if (TCP_SEQ_LT(pcb->rcv_sacks[unused_idx].left, seq)) {
2156 if (TCP_SEQ_LT(pcb->rcv_sacks[i].left, seq)) {
A Dtcp_out.c1374 if (TCP_SEQ_LT(pcb->snd_nxt, snd_nxt)) { in tcp_output()
1389 if (TCP_SEQ_LT(lwip_ntohl(seg->tcphdr->seqno), lwip_ntohl(useg->tcphdr->seqno))) { in tcp_output()
1393TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) { in tcp_output()
1750 TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) { in tcp_rexmit()
2178 if (TCP_SEQ_LT(pcb->snd_nxt, snd_nxt)) { in tcp_zero_window_probe()
/components/net/lwip/lwip-2.0.3/src/core/
A Dtcp_out.c1133 if (TCP_SEQ_LT(pcb->snd_nxt, snd_nxt)) { in tcp_output()
1148 if (TCP_SEQ_LT(lwip_ntohl(seg->tcphdr->seqno), lwip_ntohl(useg->tcphdr->seqno))) { in tcp_output()
1152 TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) { in tcp_output()
1458 TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) { in tcp_rexmit()
1641 if (TCP_SEQ_LT(pcb->snd_nxt, snd_nxt)) { in tcp_zero_window_probe()
A Dtcp_in.c1038 if (TCP_SEQ_LT(pcb->snd_wl1, seqno) ||
1039 (pcb->snd_wl1 == seqno && TCP_SEQ_LT(pcb->snd_wl2, ackno)) ||
1257 if (pcb->rttest && TCP_SEQ_LT(pcb->rtseq, ackno)) {
1368 if (TCP_SEQ_LT(seqno, pcb->rcv_nxt)) {
1593 if (TCP_SEQ_LT(seqno, next->tcphdr->seqno)) {
/components/net/lwip/lwip-1.4.1/src/core/
A Dtcp_in.c870 if (TCP_SEQ_LT(pcb->snd_wl1, seqno) || in tcp_receive()
871 (pcb->snd_wl1 == seqno && TCP_SEQ_LT(pcb->snd_wl2, ackno)) || in tcp_receive()
1091 if (pcb->rttest && TCP_SEQ_LT(pcb->rtseq, ackno)) { in tcp_receive()
1202 if (TCP_SEQ_LT(seqno, pcb->rcv_nxt)){ in tcp_receive()
1416 if (TCP_SEQ_LT(seqno, next->tcphdr->seqno)) { in tcp_receive()
A Dtcp_out.c995 if (TCP_SEQ_LT(pcb->snd_nxt, snd_nxt)) { in tcp_output()
1010 if (TCP_SEQ_LT(ntohl(seg->tcphdr->seqno), ntohl(useg->tcphdr->seqno))) { in tcp_output()
1014 TCP_SEQ_LT(ntohl((*cur_seg)->tcphdr->seqno), ntohl(seg->tcphdr->seqno))) { in tcp_output()
1297 TCP_SEQ_LT(ntohl((*cur_seg)->tcphdr->seqno), ntohl(seg->tcphdr->seqno))) { in tcp_rexmit()
/components/net/lwip/lwip-1.4.1/src/include/lwip/
A Dtcp_impl.h93 #define TCP_SEQ_LT(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) < 0) macro
/components/net/lwip/lwip-2.0.3/src/include/lwip/priv/
A Dtcp_priv.h106 #define TCP_SEQ_LT(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) < 0) macro
/components/net/lwip/lwip-2.1.2/src/include/lwip/priv/
A Dtcp_priv.h109 #define TCP_SEQ_LT(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) < 0) macro

Completed in 33 milliseconds