Home
last modified time | relevance | path

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

/external/openthread/third_party/tcplp/bsdtcp/
Dtcp_sack.c152 KASSERT(SEQ_LT(rcv_start, rcv_end), ("rcv_start < rcv_end")); in tcp_update_sack_list()
179 if (SEQ_LT(head_blk.end, end)) in tcp_update_sack_list()
341 if (SEQ_LT(tp->snd_una, th_ack) && !TAILQ_EMPTY(&tp->snd_holes)) { in tcp_sack_doack()
358 SEQ_LT(sack.start, tp->snd_max) && in tcp_sack_doack()
408 if (SEQ_LT(tp->snd_fack, sblkp->start)) { in tcp_sack_doack()
430 SEQ_LT(tp->snd_fack, sblkp->start)) in tcp_sack_doack()
433 SEQ_LT(tp->snd_fack, sblkp->end)) in tcp_sack_doack()
436 } else if (SEQ_LT(tp->snd_fack, sblkp->end)) in tcp_sack_doack()
584 if (SEQ_LT(p->rxmit, p->end)) {
585 if (SEQ_LT(p->rxmit, tp->snd_una)) {/* old SACK hole */
[all …]
Dtcp_seq.h43 #define SEQ_LT(a,b) ((int)((a)-(b)) < 0) macro
48 #define SEQ_MIN(a, b) ((SEQ_LT(a, b)) ? (a) : (b))
Dtcp_output.c155 SEQ_LT(tp->snd_nxt, tp->snd_max)) in tcp_output()
432 if (SEQ_LT(p->rxmit + len, tp->snd_una + lbuf_used_space(&tp->sendbuf))) in tcp_output()
435 if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + in tcp_output()
486 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) /* retransmit case */ in tcp_output()
781 else if (SEQ_LT(tp->snd_nxt, tp->snd_max) || sack_rxmit) { in tcp_output()
1032 if (len > 0 && !tcp_timer_active(tp, TT_PERSIST) && SEQ_LT(ntohl(th->th_seq), tp->snd_max)) { in tcp_output()
Dtcp_input.c1575 SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) || in tcp_do_segment()
1677 if (tp->t_state == TCPS_SYN_RECEIVED && SEQ_LT(th->th_seq, tp->irs)) { in tcp_do_segment()
2100 if (SEQ_LT(th->th_ack, tp->snd_recover)) { in tcp_do_segment()
2248 if (SEQ_LT(tp->snd_nxt, tp->snd_una)) in tcp_do_segment()
2331 (SEQ_LT(tp->snd_wl1, th->th_seq) || in tcp_do_segment()
2332 (tp->snd_wl1 == th->th_seq && (SEQ_LT(tp->snd_wl2, th->th_ack) || in tcp_do_segment()