Home
last modified time | relevance | path

Searched refs:tsecr (Results 1 – 6 of 6) sorted by relevance

/xnu-11215.81.4/bsd/netinet/
H A Dtcp_rack.c157 tcp_rack_update_segment_acked(struct tcpcb *tp, uint32_t tsecr, in tcp_rack_update_segment_acked() argument
183 if ((tsecr != 0 && (TSTMP_LT(tsecr, xmit_ts) || TSTMP_GT(tsecr, tcp_now))) in tcp_rack_update_segment_acked()
189 tsecr, xmit_ts, tcp_now, rtt, get_base_rtt(tp), end_seq); in tcp_rack_update_segment_acked()
H A Dtcp_subr.c4209 uint32_t acked_xmit_ts, uint32_t tsecr) in tcp_seg_collect_acked_subtree() argument
4212 tcp_seg_collect_acked_subtree(tp, RB_LEFT(seg, seg_link), acked_xmit_ts, tsecr); in tcp_seg_collect_acked_subtree()
4213 tcp_seg_collect_acked_subtree(tp, RB_RIGHT(seg, seg_link), acked_xmit_ts, tsecr); in tcp_seg_collect_acked_subtree()
4221 uint32_t acked_xmit_ts, uint32_t tsecr) in tcp_seg_collect_acked() argument
4229 tcp_seg_collect_acked_subtree(tp, RB_LEFT(seg, seg_link), acked_xmit_ts, tsecr); in tcp_seg_collect_acked()
4231 tcp_seg_collect_acked(tp, RB_RIGHT(seg, seg_link), th_ack, acked_xmit_ts, tsecr); in tcp_seg_collect_acked()
4238 tcp_seg_collect_acked(tp, RB_LEFT(seg, seg_link), th_ack, acked_xmit_ts, tsecr); in tcp_seg_collect_acked()
4243 tcp_seg_delete_acked(struct tcpcb *tp, uint32_t acked_xmit_ts, uint32_t tsecr) in tcp_seg_delete_acked() argument
4250 tcp_rack_update_segment_acked(tp, tsecr, acked_seg->xmit_ts, acked_seg->end_seq, in tcp_seg_delete_acked()
4289 uint32_t tsecr = 0, acked_xmit_ts = 0; in tcp_segs_doack() local
[all …]
H A Dtcp_sack.c434 uint32_t tsecr = 0; in tcp_sack_doack() local
437 tsecr = to->to_tsecr; in tcp_sack_doack()
498 tcp_segs_dosack(tp, sblkp->start, sblkp->end, tsecr, newbytes_acked); in tcp_sack_doack()
H A Dtcp_var.h1853 void tcp_rack_update_segment_acked(struct tcpcb *tp, uint32_t tsecr, uint32_t xmit_ts, uint32_t end…
1865 void tcp_segs_dosack(struct tcpcb *tp, tcp_seq sblk_start, tcp_seq sblk_end, uint32_t tsecr, uint32…
H A Dtcp_input.c6574 u_int32_t tsecr, tcp_seq th_ack) in tcp_xmit_timer() argument
6618 (tsecr == 0 || in tcp_xmit_timer()
6619 TSTMP_GEQ(tsecr, tp->t_badrexmt_time))) { in tcp_xmit_timer()
/xnu-11215.81.4/bsd/net/
H A Dpf_norm.c2757 u_int32_t tsval, tsecr; in pf_normalize_tcp_init() local
2815 memcpy(&tsecr, &opt[6], in pf_normalize_tcp_init()
2819 src->scrub->pfss_tsecr = ntohl(tsecr); in pf_normalize_tcp_init()
2853 u_int32_t tsval = 0, tsecr = 0; in pf_normalize_tcp_stateful() local
2940 memcpy(&tsecr, &opt[6], in pf_normalize_tcp_stateful()
2942 if (tsecr && dst->scrub && in pf_normalize_tcp_stateful()
2945 tsecr = ntohl(tsecr) in pf_normalize_tcp_stateful()
2948 &th->th_sum, htonl(tsecr), in pf_normalize_tcp_stateful()
3101 (tsecr && (SEQ_GT(tsecr, dst->scrub->pfss_tsval) || in pf_normalize_tcp_stateful()
3102 SEQ_LT(tsecr, dst->scrub->pfss_tsval0))))) { in pf_normalize_tcp_stateful()
[all …]