Lines Matching defs:timeouts
141 /* Used to record timeouts per channel type */
201 /* Channel timeouts by type */
202 struct ssh_channel_timeout *timeouts;
316 sc->timeouts = xrecallocarray(sc->timeouts, sc->ntimeouts,
317 sc->ntimeouts + 1, sizeof(*sc->timeouts));
318 sc->timeouts[sc->ntimeouts].type_pattern = xstrdup(type_pattern);
319 sc->timeouts[sc->ntimeouts].timeout_secs = timeout_secs;
323 /* Clears all previously-added channel timeouts */
332 free(sc->timeouts[i].type_pattern);
333 free(sc->timeouts);
334 sc->timeouts = NULL;
345 if (match_pattern(type, sc->timeouts[i].type_pattern))
346 return sc->timeouts[i].timeout_secs;
355 * be used to select timeouts.
1384 /* exempt from inactivity timeouts */
2592 /* inactivity timeouts must interrupt poll() */