Searched refs:TCP_SEQ_LT (Results 1 – 3 of 3) sorted by relevance
| /external/lib/lwip/core/ |
| A D | tcp_in.c | 878 if (TCP_SEQ_LT(pcb->snd_wl1, seqno) || 879 (pcb->snd_wl1 == seqno && TCP_SEQ_LT(pcb->snd_wl2, ackno)) || 1099 if (pcb->rttest && TCP_SEQ_LT(pcb->rtseq, ackno)) { 1210 if (TCP_SEQ_LT(seqno, pcb->rcv_nxt)){ 1424 if (TCP_SEQ_LT(seqno, next->tcphdr->seqno)) {
|
| A D | tcp_out.c | 995 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() 1291 TCP_SEQ_LT(ntohl((*cur_seg)->tcphdr->seqno), ntohl(seg->tcphdr->seqno))) { in tcp_rexmit()
|
| /external/lib/lwip/include/lwip/ |
| A D | tcp_impl.h | 93 #define TCP_SEQ_LT(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) < 0) macro
|
Completed in 10 milliseconds