Home
last modified time | relevance | path

Searched refs:TP_MAXUNACKTIME (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/netinet/
H A Dtcp_timer.h145 #define TP_MAXUNACKTIME(tp) \ macro
154 ((TP_MAXUNACKTIME(tp) == 0 || tp->t_acktime == 0) ? tp->t_rxtcur : \
155 max(1, min(tp->t_rxtcur, tp->t_acktime + TP_MAXUNACKTIME(tp) - ticks)))
H A Dtcp_timer.c469 if (TP_MAXUNACKTIME(tp) == 0) in tcp_maxunacktime_check()
477 if (TSTMP_GT(TP_MAXUNACKTIME(tp) + tp->t_acktime, (u_int)ticks)) in tcp_maxunacktime_check()
H A Dtcp_output.c1758 if (TP_MAXUNACKTIME(tp) && tp->t_acktime) { in tcp_setpersist()
1759 maxunacktime = tp->t_acktime + TP_MAXUNACKTIME(tp) - ticks; in tcp_setpersist()
H A Dtcp_usrreq.c2567 ui = TP_MAXUNACKTIME(tp) / hz; in tcp_default_ctloutput()