Home
last modified time | relevance | path

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

/xnu-12377.1.9/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_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_output.c1130 if (tp->t_timer[TCPT_REXMT] == 0) { in tcp_output()
1554 tp->t_timer[TCPT_REXMT] = 0; in tcp_output()
1964 tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
1991 if (so->so_snd.sb_cc && tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
3066 if (tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
3234 tp->t_timer[TCPT_REXMT] == 0) { in tcp_output()
3429 if (tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
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()
3861 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
4322 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
5247 if (tp->t_timer[TCPT_REXMT] == 0 || in tcp_input()
5387 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
5553 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
7355 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.c1999 ti->tcpi_rto = acttp->t_timer[TCPT_REXMT] ? acttp->t_rxtcur : 0; in mptcp_fill_info()
H A Dtcp_subr.c2047 otp->t_timer[TCPT_REXMT_EXT] = tp->t_timer[TCPT_REXMT]; in tcpcb_to_otcpcb()
2233 otp->t_timer[TCPT_REXMT_EXT] = tp->t_timer[TCPT_REXMT]; in tcpcb_to_xtcpcb64()
/xnu-12377.1.9/bsd/kern/
H A Dsocket_info.c159 tp->t_timer[TCPT_REXMT]; in fill_socketinfo()