Lines Matching defs:idle
50 * When a connection is idle (i.e., no data is either transmitted or
53 * timer for killing connections that have stayed idle for too long, or
57 * again when the connection has been idle for a while.
293 u32_t idle = (pcb->keep_idle) / TCP_SLOW_INTERVAL;
295 val = idle - (tcp_ticks - pcb->tmr);
297 val = (tcp_ticks - pcb->tmr) - idle;
298 idle = (TCP_KEEP_INTVL(pcb) / TCP_SLOW_INTERVAL);
299 val = idle - (val % idle);
2116 * @internal: Maybe there should be a idle TCP PCB list where these
2276 * When a connection is idle (i.e., no data is either transmitted or
2279 * timer for killing connections that have stayed idle for too long, or
2283 * again when the connection has been idle for a while.