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

  /src/sys/netinet/
tcp_timer.c 548 if ((tp->t_maxidle > 0) &&
550 tp->t_keepidle + tp->t_maxidle))
629 ((tp->t_maxidle == 0) ||
630 ((tcp_now - tp->t_rcvtime) <= tp->t_maxidle)))
tcp_var.h 391 u_int t_maxidle; /* t_keepcnt * t_keepintvl */ member in struct:tcpcb
tcp_usrreq.c 177 tp->t_maxidle = tp->t_keepcnt * MIN(tp->t_keepintvl,
192 if ((tp->t_state == TCPS_FIN_WAIT_2) && (tp->t_maxidle > 0))
193 TCP_TIMER_ARM(tp, TCPT_2MSL, tp->t_maxidle);
1208 if ((tp->t_state == TCPS_FIN_WAIT_2) && (tp->t_maxidle > 0))
1209 TCP_TIMER_ARM(tp, TCPT_2MSL, tp->t_maxidle);
tcp_input.c 2614 if (tp->t_maxidle > 0)
2616 tp->t_maxidle);
tcp_subr.c 931 tp->t_maxidle = tp->t_keepcnt * MIN(tp->t_keepintvl,

Completed in 18 milliseconds