Home
last modified time | relevance | path

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

/xnu-12377.41.6/bsd/netinet/
H A Dtcp_output.c2493 if (TSTMP_GT(tcp_now_local + pacing_delay, tp->t_latest_tx)) { in tcp_output()
2502 tp->t_latest_tx = tcp_now_local + pacing_delay; in tcp_output()
2505 if (TSTMP_GT(tcp_now_local, tp->t_latest_tx)) { in tcp_output()
2506 tp->t_latest_tx = tcp_now_local; in tcp_output()
2517 tsval = tp->t_ts_offset + tp->t_latest_tx; in tcp_output()
3046 tp->t_sndtime = tp->t_latest_tx; in tcp_output()
3052 tp->t_rtttime = tp->t_latest_tx; in tcp_output()
3096 tp->t_sndtime = tp->t_latest_tx; in tcp_output()
3282 ntohl(th->th_seq) + len, tp->t_latest_tx, retransmit_flag); in tcp_output()
H A Dtcp_timer.c3044 if (TSTMP_GT(tp->t_latest_tx, tcp_now)) { in tcp_offset_from_latest_tx()
3045 return _tcp_offset_from_start(tp, offset, tp->t_latest_tx); in tcp_offset_from_latest_tx()
H A Dtcp_var.h481 uint32_t t_latest_tx; /* Most recent transmit scheduled (including potential pacing) */ member
H A Dtcp_subr.c3042 tp->t_latest_tx = tcp_now; in tcp_new_isn()