Searched refs:tsecr (Results 1 – 6 of 6) sorted by relevance
| /xnu-12377.81.4/bsd/netinet/ |
| H A D | tcp_rack.c | 150 tcp_rack_update_segment_acked(struct tcpcb *tp, uint32_t tsecr, in tcp_rack_update_segment_acked() argument 176 if ((tsecr != 0 && (TSTMP_LT(tsecr, xmit_ts) || TSTMP_GT(tsecr, tcp_now))) in tcp_rack_update_segment_acked()
|
| H A D | tcp_subr.c | 4371 uint32_t acked_xmit_ts, uint32_t tsecr) in tcp_seg_collect_acked_subtree() argument 4374 tcp_seg_collect_acked_subtree(tp, RB_LEFT(seg, seg_link), acked_xmit_ts, tsecr); in tcp_seg_collect_acked_subtree() 4375 tcp_seg_collect_acked_subtree(tp, RB_RIGHT(seg, seg_link), acked_xmit_ts, tsecr); in tcp_seg_collect_acked_subtree() 4383 uint32_t acked_xmit_ts, uint32_t tsecr) in tcp_seg_collect_acked() argument 4391 tcp_seg_collect_acked_subtree(tp, RB_LEFT(seg, seg_link), acked_xmit_ts, tsecr); in tcp_seg_collect_acked() 4393 tcp_seg_collect_acked(tp, RB_RIGHT(seg, seg_link), th_ack, acked_xmit_ts, tsecr); in tcp_seg_collect_acked() 4400 tcp_seg_collect_acked(tp, RB_LEFT(seg, seg_link), th_ack, acked_xmit_ts, tsecr); in tcp_seg_collect_acked() 4405 tcp_seg_delete_acked(struct tcpcb *tp, uint32_t acked_xmit_ts, uint32_t tsecr) in tcp_seg_delete_acked() argument 4412 tcp_rack_update_segment_acked(tp, tsecr, acked_seg->xmit_ts, acked_seg->end_seq, in tcp_seg_delete_acked() 4451 uint32_t tsecr = 0, acked_xmit_ts = 0; in tcp_segs_doack() local [all …]
|
| H A D | tcp_sack.c | 423 uint32_t tsecr = 0; in tcp_sack_doack() local 426 tsecr = to->to_tsecr; in tcp_sack_doack() 488 tcp_segs_dosack(tp, sblkp->start, sblkp->end, tsecr, newbytes_acked); in tcp_sack_doack()
|
| H A D | tcp_var.h | 1915 void tcp_rack_update_segment_acked(struct tcpcb *tp, uint32_t tsecr, uint32_t xmit_ts, uint32_t end… 1927 void tcp_segs_dosack(struct tcpcb *tp, tcp_seq sblk_start, tcp_seq sblk_end, uint32_t tsecr, uint32…
|
| H A D | tcp_input.c | 6837 u_int32_t tsecr, tcp_seq th_ack) in tcp_xmit_timer() argument 6881 (tsecr == 0 || in tcp_xmit_timer() 6882 TSTMP_GEQ(tsecr, tp->t_badrexmt_time))) { in tcp_xmit_timer()
|
| /xnu-12377.81.4/bsd/net/ |
| H A D | pf_norm.c | 2760 u_int32_t tsval, tsecr; in pf_normalize_tcp_init() local 2818 memcpy(&tsecr, &opt[6], in pf_normalize_tcp_init() 2822 src->scrub->pfss_tsecr = ntohl(tsecr); in pf_normalize_tcp_init() 2856 u_int32_t tsval = 0, tsecr = 0; in pf_normalize_tcp_stateful() local 2943 memcpy(&tsecr, &opt[6], in pf_normalize_tcp_stateful() 2945 if (tsecr && dst->scrub && in pf_normalize_tcp_stateful() 2948 tsecr = ntohl(tsecr) in pf_normalize_tcp_stateful() 2951 &th->th_sum, htonl(tsecr), in pf_normalize_tcp_stateful() 3104 (tsecr && (SEQ_GT(tsecr, dst->scrub->pfss_tsval) || in pf_normalize_tcp_stateful() 3105 SEQ_LT(tsecr, dst->scrub->pfss_tsval0))))) { in pf_normalize_tcp_stateful() [all …]
|