Home
last modified time | relevance | path

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

/xnu-11215.81.4/bsd/netinet/
H A Dtcp_timer.h131 #define TCPT_REXMT 3 /* retransmit */ macro
155 #define TCPT_REXMT 0 /* retransmit */ macro
232 #define IS_TIMER_HZ_100MS(i) ((i) >= TCPT_REXMT && (i) < TCPT_PERSIST)
233 #define IS_TIMER_HZ_10MS(i) ((i) < TCPT_REXMT)
H A Dtcp_output.c878 if (tp->t_timer[TCPT_REXMT] == 0) { in tcp_output()
879 tp->t_timer[TCPT_REXMT] = in tcp_output()
1290 tp->t_timer[TCPT_REXMT] = 0; in tcp_output()
1724 tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
1726 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp, in tcp_output()
1752 if (so->so_snd.sb_cc && tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
2894 if (tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
2902 tp->t_timer[TCPT_REXMT] = in tcp_output()
3093 tp->t_timer[TCPT_REXMT] == 0) { in tcp_output()
3262 if (tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
[all …]
H A Dtcp_timer.c1075 case TCPT_REXMT: in tcp_timers()
1274 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp, tp->t_rxtcur); in tcp_timers()
1789 tp->t_timer[TCPT_REXMT] = 0; in tcp_timers()
1798 tp->t_timer[TCPT_REXMT] = 0; in tcp_timers()
1822 if (tp->t_timer[TCPT_REXMT] == 0 && tp->t_timer[TCPT_PERSIST] == 0 && in tcp_timers()
1825 tp->t_timer[TCPT_REXMT] = in tcp_timers()
1835 tp->t_timer[TCPT_REXMT]); in tcp_timers()
1872 tp->t_timer[TCPT_REXMT] = 0; in tcp_timers()
H A Dtcp_input.c868 tp->t_timer[TCPT_REXMT] = 0; in tcp_enter_fast_recovery()
3298 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
3303 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp, tp->t_rxtcur); in tcp_input()
4023 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
5017 if (tp->t_timer[TCPT_REXMT] == 0 || in tcp_input()
5157 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
5325 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
5331 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp, in tcp_input()
7099 tp->t_timer[TCPT_REXMT] = 0; in tcp_newreno_partial_ack()
H A Dtcp_sack.c705 tp->t_timer[TCPT_REXMT] = 0; in tcp_sack_partialack()
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.c1787 ti->tcpi_rto = tp->t_timer[TCPT_REXMT] ? tp->t_rxtcur : 0; in tcp_fill_info()
2066 tci->tcpi_rto = tp->t_timer[TCPT_REXMT] > 0 ? tp->t_rxtcur : 0; in tcp_connection_fill_info()
H A Dmptcp_usrreq.c1995 ti->tcpi_rto = acttp->t_timer[TCPT_REXMT] ? acttp->t_rxtcur : 0; in mptcp_fill_info()
H A Dtcp_subr.c1904 otp->t_timer[TCPT_REXMT_EXT] = tp->t_timer[TCPT_REXMT]; in tcpcb_to_otcpcb()
2090 otp->t_timer[TCPT_REXMT_EXT] = tp->t_timer[TCPT_REXMT]; in tcpcb_to_xtcpcb64()
/xnu-11215.81.4/bsd/kern/
H A Dsocket_info.c159 tp->t_timer[TCPT_REXMT]; in fill_socketinfo()