Home
last modified time | relevance | path

Searched refs:TCPT_REXMT (Results 1 – 10 of 10) sorted by relevance

/xnu-12377.61.12/bsd/netinet/
H A Dtcp_timer.h131 #define TCPT_REXMT 3 /* retransmit */ macro
155 #define TCPT_REXMT 0 /* retransmit */ macro
215 #define IS_TIMER_HZ_100MS(i) ((i) >= TCPT_REXMT && (i) < TCPT_PERSIST)
216 #define IS_TIMER_HZ_10MS(i) ((i) < TCPT_REXMT)
H A Dtcp_output.c454 uint64_t rto_val = tp->t_timer[TCPT_REXMT]; in tcp_calculate_rto_deadline()
1190 if (tp->t_timer[TCPT_REXMT] == 0) { in tcp_output()
1614 tp->t_timer[TCPT_REXMT] = 0; in tcp_output()
2024 tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
2051 if (so->so_snd.sb_cc && tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
3126 if (tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
3294 tp->t_timer[TCPT_REXMT] == 0) { in tcp_output()
3497 if (tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
3577 if (tp->t_timer[TCPT_REXMT] == 0) { in tcp_set_rto_deadline()
H A Dtcp_timer.c1067 case TCPT_REXMT: in tcp_timers()
1752 tp->t_timer[TCPT_REXMT] = 0; in tcp_timers()
1761 tp->t_timer[TCPT_REXMT] = 0; in tcp_timers()
1785 if (tp->t_timer[TCPT_REXMT] == 0 && tp->t_timer[TCPT_PERSIST] == 0 && in tcp_timers()
1825 tp->t_timer[TCPT_REXMT] = 0; in tcp_timers()
3065 tp->t_timer[TCPT_REXMT] = tcp_offset_from_latest_tx(tp, tp->t_rxtcur); in tcp_set_rto()
H A Dtcp_sack.c695 tp->t_timer[TCPT_REXMT] = 0; in tcp_sack_partialack()
H A Dtcp_input.c866 tp->t_timer[TCPT_REXMT] = 0; in tcp_enter_fast_recovery()
3862 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
4323 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
5256 if (tp->t_timer[TCPT_REXMT] == 0 || in tcp_input()
5396 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
5562 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
7364 tp->t_timer[TCPT_REXMT] = 0; in tcp_newreno_partial_ack()
H A Din_pcblist.c239 xt->t_timer[TCPT_REXMT_EXT] = tp->t_timer[TCPT_REXMT]; in tcpcb_to_xtcpcb_n()
H A Dtcp_usrreq.c1783 ti->tcpi_rto = tp->t_timer[TCPT_REXMT] ? tp->t_rxtcur : 0; in tcp_fill_info()
2072 tci->tcpi_rto = tp->t_timer[TCPT_REXMT] > 0 ? tp->t_rxtcur : 0; in tcp_connection_fill_info()
H A Dmptcp_usrreq.c2002 ti->tcpi_rto = acttp->t_timer[TCPT_REXMT] ? acttp->t_rxtcur : 0; in mptcp_fill_info()
H A Dtcp_subr.c2152 otp->t_timer[TCPT_REXMT_EXT] = tp->t_timer[TCPT_REXMT]; in tcpcb_to_otcpcb()
2338 otp->t_timer[TCPT_REXMT_EXT] = tp->t_timer[TCPT_REXMT]; in tcpcb_to_xtcpcb64()
/xnu-12377.61.12/bsd/kern/
H A Dsocket_info.c159 tp->t_timer[TCPT_REXMT]; in fill_socketinfo()