Home
last modified time | relevance | path

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

/xnu-11417.101.15/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.c896 if (tp->t_timer[TCPT_REXMT] == 0) { in tcp_output()
898 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp, tp->t_rxtcur); in tcp_output()
1318 tp->t_timer[TCPT_REXMT] = 0; in tcp_output()
1765 tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
1768 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp, in tcp_output()
1794 if (so->so_snd.sb_cc && tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
2947 if (tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
2956 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp, tp->t_rxtcur); in tcp_output()
3150 tp->t_timer[TCPT_REXMT] == 0) { in tcp_output()
3345 if (tp->t_timer[TCPT_REXMT] == 0 && in tcp_output()
[all …]
H A Dtcp_timer.c1075 case TCPT_REXMT: in tcp_timers()
1281 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp, tp->t_rxtcur); in tcp_timers()
1796 tp->t_timer[TCPT_REXMT] = 0; in tcp_timers()
1805 tp->t_timer[TCPT_REXMT] = 0; in tcp_timers()
1829 if (tp->t_timer[TCPT_REXMT] == 0 && tp->t_timer[TCPT_PERSIST] == 0 && in tcp_timers()
1833 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp, tp->t_rxtcur); in tcp_timers()
1842 tp->t_timer[TCPT_REXMT]); in tcp_timers()
1879 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()
3334 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
3340 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp, tp->t_rxtcur); in tcp_input()
4068 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
5073 if (tp->t_timer[TCPT_REXMT] == 0 || in tcp_input()
5213 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
5381 tp->t_timer[TCPT_REXMT] = 0; in tcp_input()
5388 tp->t_timer[TCPT_REXMT] = OFFSET_FROM_START(tp, tp->t_rxtcur); in tcp_input()
7166 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()
2068 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.c1914 otp->t_timer[TCPT_REXMT_EXT] = tp->t_timer[TCPT_REXMT]; in tcpcb_to_otcpcb()
2100 otp->t_timer[TCPT_REXMT_EXT] = tp->t_timer[TCPT_REXMT]; in tcpcb_to_xtcpcb64()
/xnu-11417.101.15/bsd/kern/
H A Dsocket_info.c159 tp->t_timer[TCPT_REXMT]; in fill_socketinfo()