Lines Matching refs:timeout

65     apr_interval_time_t timeout;
76 /* If set it will give the retry timeout for the worker
78 * in error state, it will be retried after that timeout.
122 /* Acquire timeout in given unit (default is milliseconds).
126 if (ap_timeout_parameter_parse(val, &timeout, "ms") != APR_SUCCESS)
127 return "Acquire timeout has wrong format";
128 if (timeout < 1000)
130 worker->s->acquire = timeout;
133 else if (!strcasecmp(key, "timeout")) {
134 /* Connection timeout in seconds.
135 * Defaults to server timeout.
140 worker->s->timeout = apr_time_from_sec(ival);
243 /* Ping/Pong timeout in given unit (default is second).
245 if (ap_timeout_parameter_parse(val, &timeout, "s") != APR_SUCCESS)
246 return "Ping/Pong timeout has wrong format";
247 if (timeout < 1000 && timeout >= 0)
248 return "Ping/Pong timeout must be at least one millisecond";
249 worker->s->ping_timeout = timeout;
259 /* Request timeout in given unit (default is second).
260 * Defaults to connection timeout
262 if (ap_timeout_parameter_parse(val, &timeout, "s") != APR_SUCCESS)
264 if (timeout < 1000)
266 worker->s->conn_timeout = timeout;
333 else if (!strcasecmp(key, "timeout")) {
334 /* Balancer timeout in seconds.
341 return "timeout must be at least one second";
342 balancer->s->timeout = apr_time_from_sec(ival);
1279 ps->timeout = 0;
1326 if (!b2->s->timeout && b1->s->timeout) {
1327 b2->s->timeout = b1->s->timeout;
1432 ps->timeout = (overrides->timeout_set == 0) ? base->timeout : overrides->timeout;
2070 int timeout;
2072 timeout = atoi(arg);
2073 if (timeout<1) {
2077 psf->timeout = apr_time_from_sec(timeout);
2578 "Set the timeout (in seconds) for a proxied connection. "
2579 "This overrides the server timeout"),
2711 apr_time_sec(balancer->s->timeout));