Home
last modified time | relevance | path

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

/xnu-10063.141.1/bsd/netinet/
H A Dtcp_timer.h130 #define TCPT_REXMT 2 /* retransmit */ macro
154 #define TCPT_REXMT 0 /* retransmit */ macro
231 #define IS_TIMER_HZ_100MS(i) ((i) >= TCPT_REXMT && (i) < TCPT_PERSIST)
232 #define IS_TIMER_HZ_10MS(i) ((i) < TCPT_REXMT)
H A Dtcp_output.c862 if (tp->t_timer[TCPT_REXMT] == 0) { in tcp_output()
863 tp->t_timer[TCPT_REXMT] = in tcp_output()
1245 tp->t_timer[TCPT_REXMT] = 0; in tcp_output()
1670 tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
1672 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp, in tcp_output()
1698 if (so->so_snd.sb_cc && tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
2792 if (tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
2800 tp->t_timer[TCPT_REXMT] = in tcp_output()
3011 tp->t_timer[TCPT_REXMT] == 0) { in tcp_output()
3161 if (tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
[all …]
H A Dtcp_timer.c1083 case TCPT_REXMT: in tcp_timers()
1282 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp, tp->t_rxtcur); in tcp_timers()
1787 tp->t_timer[TCPT_REXMT] = 0; in tcp_timers()
1796 tp->t_timer[TCPT_REXMT] = 0; in tcp_timers()
1820 if (tp->t_timer[TCPT_REXMT] == 0 && tp->t_timer[TCPT_PERSIST] == 0 && in tcp_timers()
1823 tp->t_timer[TCPT_REXMT] = in tcp_timers()
1833 tp->t_timer[TCPT_REXMT]); in tcp_timers()
1869 tp->t_timer[TCPT_REXMT] = 0; in tcp_timers()
H A Dtcp_input.c870 tp->t_timer[TCPT_REXMT] = 0; in tcp_reduce_congestion_window()
3153 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
3156 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp, tp->t_rxtcur); in tcp_input()
3850 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
4833 if (tp->t_timer[TCPT_REXMT] == 0 || in tcp_input()
4961 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
5119 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
5123 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp, in tcp_input()
6818 tp->t_timer[TCPT_REXMT] = 0; in tcp_newreno_partial_ack()
H A Dtcp_sack.c688 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.c1790 ti->tcpi_rto = tp->t_timer[TCPT_REXMT] ? tp->t_rxtcur : 0; in tcp_fill_info()
2057 tci->tcpi_rto = tp->t_timer[TCPT_REXMT] > 0 ? tp->t_rxtcur : 0; in tcp_connection_fill_info()
H A Dmptcp_usrreq.c1978 ti->tcpi_rto = acttp->t_timer[TCPT_REXMT] ? acttp->t_rxtcur : 0; in mptcp_fill_info()
H A Dtcp_subr.c1883 otp->t_timer[TCPT_REXMT_EXT] = tp->t_timer[TCPT_REXMT]; in tcpcb_to_otcpcb()
2069 otp->t_timer[TCPT_REXMT_EXT] = tp->t_timer[TCPT_REXMT]; in tcpcb_to_xtcpcb64()
/xnu-10063.141.1/bsd/kern/
H A Dsocket_info.c157 tp->t_timer[TCPT_REXMT]; in fill_socketinfo()