Home
last modified time | relevance | path

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

/xnu-11215.1.10/bsd/netinet/
H A Dtcp_sack.c123 SEQ_LT((_sb_)->start, (_tp_)->snd_max) && \
169 if (SEQ_LT(head_blk.end, end)) { in tcp_update_sack_list()
362 if (SEQ_LT(s->rxmit, sacked_seq) && in tcp_sack_detect_reordering()
446 if (!TCP_RACK_ENABLED(tp) && SEQ_LT(tp->snd_una, th_ack) && !TAILQ_EMPTY(&tp->snd_holes)) { in tcp_sack_doack()
529 if (SEQ_LT(tp->snd_fack, sblkp->start)) { in tcp_sack_doack()
554 SEQ_LT(tp->snd_fack, sblkp->start)) { in tcp_sack_doack()
558 SEQ_LT(tp->snd_fack, sblkp->end)) { in tcp_sack_doack()
563 } else if (SEQ_LT(tp->snd_fack, sblkp->end)) { in tcp_sack_doack()
713 if (SEQ_LT(tp->snd_nxt, th->th_ack)) { in tcp_sack_partialack()
725 if (SEQ_LT(tp->snd_fack, tp->snd_recover) && in tcp_sack_partialack()
[all …]
H A Dtcp_rack.c46 if (SEQ_LT(start, tp->rack.dsack_round_end)) { in tcp_rack_transmit_seg()
224 if (SEQ_LT(th_ack, tp->rack.dsack_round_end)) { in tcp_rack_update_reordering_window()
367 if (SEQ_LT(tp->snd_nxt, seg->end_seq) && in tcp_rack_adjust()
373 if (SEQ_LT(tp->snd_nxt, seg->end_seq)) { in tcp_rack_adjust()
438 if (SEQ_LT(seg->end_seq, tp->snd_fack) && in tcp_rack_detect_reordering_acked()
H A Dtcp_seq.h72 #define SEQ_LT(a, b) ((int)((a)-(b)) < 0) macro
77 #define SEQ_MIN(a, b) ((SEQ_LT(a, b)) ? (a) : (b))
H A Dtcp_output.c809 if (so->so_flags & SOF_MP_SUBFLOW && SEQ_LT(tp->snd_nxt, tp->snd_una)) { in tcp_output()
958 if (SACK_ENABLED(tp) && SEQ_LT(tp->snd_nxt, tp->snd_max)) { in tcp_output()
1057 if (SEQ_LT(tp->snd_nxt, tp->snd_max) && SEQ_LEQ(tp->snd_nxt, p->rxmit) && in tcp_output()
1165 SEQ_LT(tp->snd_fack, tp->snd_recover) && in tcp_output()
1430 if (SEQ_LT(seg->start_seq + len, tp->snd_una + so->so_snd.sb_cc)) { in tcp_output()
1434 if (SEQ_LT(p->rxmit + len, tp->snd_una + so->so_snd.sb_cc)) { in tcp_output()
1439 if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + so->so_snd.sb_cc)) { in tcp_output()
1482 if (SEQ_LT(bg_rwintop, tp->rcv_nxt + min_iaj_win)) { in tcp_output()
1529 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) { in tcp_output()
2267 !SEQ_LT(tp->snd_nxt, tp->snd_max) && !rack_sack_rxmit) { in tcp_output()
[all …]
H A Dtcp_input.c1726 (SEQ_LT(tp->snd_wl1, th->th_seq) || in tcp_update_window()
1727 (tp->snd_wl1 == th->th_seq && (SEQ_LT(tp->snd_wl2, th->th_ack) || in tcp_update_window()
2973 SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd))) { in tcp_input()
2995 SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) { in tcp_input()
3238 if (SEQ_LT(tp->snd_fack, th->th_ack)) { in tcp_input()
3349 if (SEQ_LT(tp->rcv_high, tp->rcv_nxt)) { in tcp_input()
3880 if (SEQ_LT(tp->snd_nxt, tp->snd_una)) { in tcp_input()
3986 SEQ_LT(tp->snd_una, th->th_ack)) { in tcp_input()
4159 SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) || in tcp_input()
4285 if (tp->t_state == TCPS_SYN_RECEIVED && SEQ_LT(th->th_seq, tp->irs)) { in tcp_input()
[all …]
H A Dtcp_rledbat.c269 if (SEQ_LT(th->th_seq + segment_len, tp->rcv_high) && in tcp_rledbat_data_rcvd()
H A Dtcp_subr.c2545 SEQ_LT(icmp_tcp_seq, tp->snd_max)) { in tcp_ctlinput()
2707 SEQ_LT(icmp_tcp_seq, tp->snd_max)) { in tcp6_ctlinput()
3791 if (next != NULL && SEQ_LT(next->rx_start, end)) { in tcp_rxtseg_insert()
3800 if (!SEQ_LT(start, end)) { in tcp_rxtseg_insert()
3912 if (SEQ_LT(th_ack, tp->snd_recover)) { in tcp_rxtseg_detect_bad_rexmt()
3949 if (SEQ_LT(seg->end_seq, seg->start_seq)) { in RB_GENERATE()
4124 if (SEQ_LT(end, found_seg->end_seq) && SEQ_GT(end, found_seg->start_seq)) { in tcp_seg_sent_insert()
4307 if (SEQ_LT(th_ack, found_seg->end_seq) && SEQ_GT(th_ack, found_seg->start_seq)) { in tcp_segs_doack()
4464 if (SEQ_LT(sblk_end, found_seg->end_seq) && SEQ_GT(sblk_end, found_seg->start_seq)) { in tcp_segs_dosack()
H A Dtcp_usrreq.c1009 if ((flags & MSG_WAITALL) && SEQ_LT(tp->last_ack_sent, tp->rcv_nxt)) { in tcp_usr_rcvd()
/xnu-11215.1.10/bsd/net/
H A Dpf_norm.c3099 (SEQ_LT(tsval, dst->scrub->pfss_tsecr) || in pf_normalize_tcp_stateful()
3102 SEQ_LT(tsecr, dst->scrub->pfss_tsval0))))) { in pf_normalize_tcp_stateful()
3112 SEQ_LT(tsval, dst->scrub->pfss_tsecr) ? '0' : ' ', in pf_normalize_tcp_stateful()
3116 SEQ_LT(tsecr, dst->scrub->pfss_tsval0)? '3' : ' ')); in pf_normalize_tcp_stateful()
3233 (SEQ_LT(tsval, src->scrub->pfss_tsval0) || in pf_normalize_tcp_stateful()