Searched refs:retry (Results 1 - 8 of 8) sorted by relevance

/httpd/modules/core/
H A Dmod_so.c149 int retry = 0; local
153 /* retry on error without path to use dlopen()'s search path */
154 retry = 1;
157 if (fullname == NULL && !retry) {
165 if (retry) {
/httpd/modules/proxy/
H A Dmod_proxy_ajp.c222 * case we can dare to retry it with a different worker if we are
354 * retry it with a different worker if we are a balancer member.
669 * retry it with a different worker if we are a balancer member.
738 int retry; local
766 retry = 0;
767 while (retry < 2) {
796 retry++;
815 retry++;
H A Dmod_proxy_wstunnel.c471 int retry; local
513 retry = 0;
514 while (retry < 2) {
H A Dmod_proxy_http.c1389 * WITHOUT ANY response to trigger a retry by the client
1394 * not do a retry. We should also not do this on a
1993 int retry = 0; local
2104 while (retry < 2) {
2107 if (retry) {
2162 retry++;
2189 retry++;
H A Dmod_proxy.h313 /* default worker retry timeout in seconds */
375 apr_interval_time_t retry; /* retry interval */ member in struct:__anon284
853 * Mark a worker for retry
857 * @return OK if marked for retry, DECLINED otherwise
858 * @note The error status of the worker will cleared if the retry interval has
H A Dproxy_util.c1851 worker->s->retry = apr_time_from_sec(PROXY_WORKER_DEFAULT_RETRY);
1958 || apr_time_now() > worker->s->error_time + worker->s->retry) {
1962 "%s: worker for (%s) has been marked for retry",
1968 "%s: too soon to retry worker for (%s)",
2908 worker->s->hostname, apr_time_sec(worker->s->retry));
H A Dmod_proxy_balancer.c226 * retry on that worker. It will be marked as
227 * operational if the retry timeout is elapsed.
250 * retry on that worker. It will be marked as
251 * operational if the retry timeout is elapsed.
1420 " <httpd:retry>%" APR_TIME_T_FMT "</httpd:retry>\n",
1421 apr_time_sec(worker->s->retry));
H A Dmod_proxy.c75 else if (!strcasecmp(key, "retry")) {
76 /* If set it will give the retry timeout for the worker
83 worker->s->retry = apr_time_from_sec(ival);
1139 * retry with a direct connection since we already
1149 * a request body. We cannot retry with a direct

Completed in 2231 milliseconds