Searched refs:TCP_SEQ_LT (Results 1 – 3 of 3) sorted by relevance
/third_party/lwip/src/core/ |
D | tcp_in.c | 1155 if (TCP_SEQ_LT(pcb->snd_wl1, seqno) || 1156 (pcb->snd_wl1 == seqno && TCP_SEQ_LT(pcb->snd_wl2, ackno)) || 1345 if (pcb->rttest && TCP_SEQ_LT(pcb->rtseq, ackno)) { 1446 if (TCP_SEQ_LT(seqno, pcb->rcv_nxt)) { 1675 … u32_t sackbeg = TCP_SEQ_LT(seqno, pcb->ooseq->tcphdr->seqno) ? seqno : pcb->ooseq->tcphdr->seqno; 1706 if (TCP_SEQ_LT(seqno, next->tcphdr->seqno)) { 2053 if ((pcb->flags & TF_SACK) == 0 || !TCP_SEQ_LT(left, right)) { 2123 if (TCP_SEQ_LT(pcb->rcv_sacks[unused_idx].left, seq)) { 2157 if (TCP_SEQ_LT(pcb->rcv_sacks[i].left, seq)) {
|
D | tcp_out.c | 1375 if (TCP_SEQ_LT(pcb->snd_nxt, snd_nxt)) { in tcp_output() 1390 if (TCP_SEQ_LT(lwip_ntohl(seg->tcphdr->seqno), lwip_ntohl(useg->tcphdr->seqno))) { in tcp_output() 1394 … TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) { in tcp_output() 1751 TCP_SEQ_LT(lwip_ntohl((*cur_seg)->tcphdr->seqno), lwip_ntohl(seg->tcphdr->seqno))) { in tcp_rexmit() 2179 if (TCP_SEQ_LT(pcb->snd_nxt, snd_nxt)) { in tcp_zero_window_probe()
|
/third_party/lwip/src/include/lwip/priv/ |
D | tcp_priv.h | 109 #define TCP_SEQ_LT(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) < 0) macro
|