Lines Matching defs:auth_workers_throttle_count
63 static unsigned int auth_workers_throttle_count;
178 if (array_count(&connections) >= auth_workers_throttle_count)
320 auth_workers_throttle_count = array_count(&connections);
326 if (auth_workers_throttle_count >= array_count(&connections))
327 auth_workers_throttle_count = array_count(&connections)-1;
328 else if (auth_workers_throttle_count > 1)
329 auth_workers_throttle_count--;
348 auth_workers_throttle_count = max_count;
349 } else if (auth_workers_throttle_count < max_count)
350 auth_workers_throttle_count++;
489 auth_workers_throttle_count = global_auth_settings->worker_max_count;
490 i_assert(auth_workers_throttle_count > 0);