Home
last modified time | relevance | path

Searched refs:hysteresis_start (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/openssh/
H A Dlog.c593 rl->hysteresis, rl->hysteresis_start == 0 ? -1 : in log_ratelimit()
594 (long)(now - rl->hysteresis_start), in log_ratelimit()
596 if (rl->hysteresis_start == 0) { in log_ratelimit()
604 rl->hysteresis_start = now; in log_ratelimit()
605 } else if (rl->hysteresis_start + rl->hysteresis < now) { in log_ratelimit()
616 rl->hysteresis_start = 0; in log_ratelimit()
627 rl->hysteresis_start = 0; in log_ratelimit()
632 } else if (rl->hysteresis_start != 0) { in log_ratelimit()
635 rl->hysteresis_start = 0; in log_ratelimit()
H A Dlog.h99 time_t hysteresis_start; member