Searched refs:idle_time (Results 1 – 4 of 4) sorted by relevance
| /xnu-8020.101.4/bsd/netinet/ |
| H A D | tcp_log.h | 96 …rn void tcp_log_keepalive(const char *func_name, int line_no, struct tcpcb *tp, int32_t idle_time); 152 #define TCP_LOG_KEEP_ALIVE(tp, idle_time) if (tcp_is_log_enabled(tp, TLEF_KEEP_ALIVE)) \ argument 153 tcp_log_keepalive(__func__, __LINE__, (tp), (idle_time))
|
| H A D | tcp_timer.c | 1018 int32_t rexmt, optlen = 0, idle_time = 0; in tcp_timers() local 1027 idle_time = tcp_now - tp->t_rcvtime; in tcp_timers() 1042 ((idle_time > 0) && (idle_time < TCP_CONN_MAXIDLE(tp)))) { in tcp_timers() 1429 (idle_time >= tcp_maxpersistidle || in tcp_timers() 1430 idle_time >= TCP_REXMTVAL(tp) * tcp_totbackoff)) || in tcp_timers() 1481 if (idle_time >= TCP_CONN_KEEPIDLE(tp) + TCP_CONN_MAXIDLE(tp)) { in tcp_timers() 1492 TCP_LOG_KEEP_ALIVE(tp, idle_time); in tcp_timers()
|
| H A D | tcp_log.c | 339 int32_t idle_time) in tcp_log_keepalive() argument 371 idle_time, in tcp_log_keepalive()
|
| H A D | tcp_output.c | 600 int idle_time = 0; in tcp_output() local 631 idle_time = tcp_now - tp->t_rcvtime; in tcp_output() 632 if (idle && idle_time >= TCP_IDLETIMEOUT(tp)) { in tcp_output() 635 idle_time >= TCP_CC_CWND_NONVALIDATED_PERIOD)) { in tcp_output()
|