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

  /src/sys/netinet/
tcp_var.h 390 u_int t_keepcnt; member in struct:tcpcb
391 u_int t_maxidle; /* t_keepcnt * t_keepintvl */
tcp_subr.c 930 tp->t_keepcnt = MAX(1, MIN(tcp_keepcnt, TCP_TIMER_MAXTICKS));
931 tp->t_maxidle = tp->t_keepcnt * MIN(tp->t_keepintvl,
932 TCP_TIMER_MAXTICKS/tp->t_keepcnt);
tcp_usrreq.c 177 tp->t_maxidle = tp->t_keepcnt * MIN(tp->t_keepintvl,
178 TCP_TIMER_MAXTICKS / tp->t_keepcnt);
363 tp->t_keepcnt = ui;
414 optval = tp->t_keepcnt;

Completed in 16 milliseconds