Home
last modified time | relevance | path

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

/dragonfly/sys/netinet/
H A Dtcp_var.h552 #define TCP_RTT_SCALE 32 /* multiplier for srtt; 3 bits frac. */ macro
H A Dtcp_input.c3125 tp->t_srtt = rtt / (RTM_RTTUNIT / (hz * TCP_RTT_SCALE)); in tcp_rmx_rtt()
3126 tp->t_rttbest = tp->t_srtt + TCP_RTT_SCALE; in tcp_rmx_rtt()
3135 tp->t_srtt * TCP_RTTVAR_SCALE / TCP_RTT_SCALE; in tcp_rmx_rtt()
H A Dtcp_subr.c963 i = tp->t_srtt * (RTM_RTTUNIT / (hz * TCP_RTT_SCALE)); in tcp_close()
/dragonfly/usr.bin/netstat/
H A Dinet.c262 printf("%8.3f ", (double)tp->t_srtt * 1000.0 / TCP_RTT_SCALE / clockinfo.hz); in outputpcb()