Searched defs:backend (Results 1 - 11 of 11) sorted by relevance

/httpd/modules/proxy/
H A Dmod_proxy_express.c110 char *backend; local
152 backend = apr_pstrmemdup(r->pool, val.dptr, val.dsize);
153 if (!backend) {
158 "proxy_express: found %s -> %s", name, backend);
159 r->filename = apr_pstrcat(r->pool, "proxy:", backend, r->uri, NULL);
174 * or thread is handling the backend
177 if (strcasecmp(backend, ralias->real) == 0) {
189 ralias->real = apr_pstrdup(dconf->raliases->pool, backend);
H A Dmod_proxy_ajp.c109 * it might be undesirable to resend it to a backend again
145 * available at the backend. If there is no more data available, we flush
236 /* We had a failure: Close connection to backend */
257 /* We had a failure: Close connection to backend */
277 /* We had a failure: Close connection to backend */
292 /* We had a failure: Close connection to backend */
316 * Now the connection is in the wrong state on the backend.
318 * not move this connection to the correct state on the backend
332 /* We had a failure: Close connection to backend */
367 * data available from the backend (d
736 proxy_conn_rec *backend = NULL; local
[all...]
H A Dmod_proxy_wstunnel.c468 proxy_conn_rec *backend = NULL; local
500 status = ap_proxy_acquire_connection(scheme, &backend, worker,
503 if (backend) {
504 backend->close = 1;
505 ap_proxy_release_connection(scheme, backend, r->server);
510 backend->is_ssl = is_ssl;
511 backend->close = 0;
517 status = ap_proxy_determine_connection(p, r, conf, worker, backend,
526 if (ap_proxy_connect_backend(scheme, backend, worker, r->server)) {
528 "failed to make connection to backend
[all...]
H A Dmod_proxy_fcgi.c868 proxy_conn_rec *backend = NULL; local
889 status = ap_proxy_acquire_connection(FCGI_SCHEME, &backend, worker,
892 if (backend) {
893 backend->close = 1;
894 ap_proxy_release_connection(FCGI_SCHEME, backend, r->server);
899 backend->is_ssl = 0;
902 status = ap_proxy_determine_connection(p, r, conf, worker, backend,
915 backend->close = 1;
917 backend->close = 0;
921 if (ap_proxy_connect_backend(FCGI_SCHEME, backend, worke
[all...]
H A Dmod_proxy_scgi.c19 * Proxy backend module for the SCGI protocol
359 * Fetch response from backend and pass back to the front
499 * Either the backend sets it or it's gonna be chunked.
531 proxy_conn_rec *backend = NULL; local
543 status = ap_proxy_acquire_connection(PROXY_FUNCTION, &backend, worker,
548 backend->is_ssl = 0;
551 status = ap_proxy_determine_connection(p, r, conf, worker, backend,
559 if (ap_proxy_connect_backend(PROXY_FUNCTION, backend, worker, r->server)) {
561 "failed to make connection to backend: %s:%u",
562 backend
[all...]
H A Dmod_serf.c668 ap_serf_cluster_provider_t *backend; local
690 backend = ap_lookup_provider(AP_SERF_CLUSTER_PROVIDER, cluster->provider, "0");
692 if (backend == NULL) {
713 if (backend->check_config == NULL) {
719 rv = backend->check_config(backend->baton, cmd, cluster->params);
761 "Configure a cluster backend"),
H A Dmod_proxy_ftp.c945 apr_status_t proxy_ftp_cleanup(request_rec *r, proxy_conn_rec *backend) argument
948 backend->close = 1;
950 ap_proxy_release_connection("FTP", backend, r->server);
974 proxy_conn_rec *backend; local
1160 backend = (proxy_conn_rec *) ap_get_module_config(c->conn_config, &proxy_ftp_module);
1161 if (!backend) {
1162 status = ap_proxy_acquire_connection("FTP", &backend, worker, r->server);
1164 if (backend) {
1165 backend->close = 1;
1166 ap_proxy_release_connection("FTP", backend,
[all...]
H A Dmod_proxy_http.c29 proxy_conn_rec *backend);
957 * reusing the backend connection.
973 * If we plan to close the backend connection sent Connection: close
1167 "Headers received from backend:");
1323 proxy_conn_rec *backend = *backend_ptr; local
1324 conn_rec *origin = backend->connection;
1342 apr_socket_timeout_get(backend->sock, &old_timeout);
1345 rc = apr_socket_timeout_set(backend->sock, worker->s->ping_timeout);
1357 backend->r = make_fake_req(origin, r);
1361 backend
1962 ap_proxy_http_cleanup(const char *scheme, request_rec *r, proxy_conn_rec *backend) argument
1990 proxy_conn_rec *backend = NULL; local
[all...]
H A Dproxy_util.c1460 * when disconnecting from backend.
2272 /* Unless we are connecting the backend via a (forward Proxy)Remote, we
2333 * Save our real backend data for using it later during HTTP CONNECT.
2364 * Only do a lookup if we should not reuse the backend address.
2377 * Looking up the backend address for the worker only makes sense if
2387 * Worker can have the single constant backend adress.
2446 * backend request URI.
2551 * The proxy is given by "backend", the target server
2552 * is contained in the "forward" member of "backend".
2554 static apr_status_t send_http_connect(proxy_conn_rec *backend, argument
[all...]
/httpd/modules/aaa/
H A Dmod_authnz_fcgi.c38 const char *backend; /* backend address, as configured */ member in struct:__anon61
86 apr_status_t rv = APR_EINVAL; /* returned if no backend addr was provided
128 APLOGNO(02496) "name %s, backend %s, host %s, port %d, "
131 conf->backend,
179 APLOGNO(02497) "Couldn't read from backend %s",
180 conf->backend);
239 conf->backend);
598 fn, conf->backend);
625 fn, conf->backend, readbu
[all...]
/httpd/modules/ssl/
H A Dmod_ssl_ct.c1750 tmprv = sct_parse("backend server", c->base_server,
2250 APLOGNO(02739) "Forbidding access to backend server; "
2669 proxy_conn_rec *backend)
2671 conn_rec *origin = backend->connection;
2706 "No backend connection available in ssl_ct_detach_backend()");
3039 "or \"require\" to abort backend connections if an acceptable "
2668 ssl_ct_detach_backend(request_rec *r, proxy_conn_rec *backend) argument

Completed in 52 milliseconds