HomeSort by: relevance | last modified time | path
    Searched refs:TCPTV_MSL (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/netinet/
tcp_timer.h 119 #define TCPTV_MSL ( 30*PR_SLOWHZ) /* max seg lifetime (hah!) */
tcp_subr.c 211 int tcp_msl_remote = TCPTV_MSL; /* MSL otherwise */
935 tp->t_msl = TCPTV_MSL;
1846 tp->t_msl = tcp_msl_loop ? tcp_msl_loop : (TCPTV_MSL >> 2);
1852 tp->t_msl = tcp_msl_local ? tcp_msl_local : (TCPTV_MSL >> 1);
1856 tp->t_msl = tcp_msl_local ? tcp_msl_local : (TCPTV_MSL >> 1);
1860 tp->t_msl = tcp_msl_remote ? tcp_msl_remote : TCPTV_MSL;
1878 tp->t_msl = tcp_msl_loop ? tcp_msl_loop : (TCPTV_MSL >> 2);
1884 tp->t_msl = tcp_msl_local ? tcp_msl_local : (TCPTV_MSL >> 1);
1888 tp->t_msl = tcp_msl_local ? tcp_msl_local : (TCPTV_MSL >> 1);
1892 tp->t_msl = tcp_msl_remote ? tcp_msl_remote : TCPTV_MSL;
    [all...]
tcp_vtw.c 1350 return tcp_msl_remote ? tcp_msl_remote : (TCPTV_MSL >> 0);
1352 return tcp_msl_local ? tcp_msl_local : (TCPTV_MSL >> 1);
1354 return tcp_msl_loop ? tcp_msl_loop : (TCPTV_MSL >> 2);
1364 if (msl <= (tcp_msl_loop ? tcp_msl_loop : (TCPTV_MSL >> 2)))
1366 if (msl <= (tcp_msl_local ? tcp_msl_local : (TCPTV_MSL >> 1)))
2303 , TCPTV_MSL
tcp_input.c 232 int tcp_msl = (TCPTV_MSL / PR_SLOWHZ);

Completed in 16 milliseconds