| /httpd/build/pkg/ |
| H A D | buildpkg.sh | 74 --enable-proxy --enable-proxy-connect \ 75 --enable-proxy-http --enable-proxy-ftp
|
| /httpd/modules/debugging/ |
| H A D | mod_firehose.c | 77 proxy_enum proxy; member in struct:firehose_conn_t 427 if (!conn->file || (conn->proxy == FIREHOSE_NORMAL 428 && !c->sbh) || (conn->proxy == FIREHOSE_PROXY && c->sbh)) { 441 ctx->direction = conn->proxy == FIREHOSE_PROXY ? '>' : '<'; 447 ctx->direction = conn->proxy == FIREHOSE_PROXY ? '<' : '>'; 489 conn->filename, conn->proxy == FIREHOSE_PROXY ? "proxy " : "", 542 const char *arg2, proxy_enum proxy, direction_enum direction, 556 firehose->proxy = proxy; 541 firehose_enable_connection(cmd_parms *cmd, const char *arg1, const char *arg2, proxy_enum proxy, direction_enum direction, request_enum request) argument [all...] |
| /httpd/modules/proxy/ |
| H A D | mod_proxy.h | 97 /* static information about a remote proxy */ 99 const char *scheme; /* the schemes handled by this proxy, or '*' */ 100 const char *protocol; /* the scheme used to talk to this proxy */ 101 const char *hostname; /* the hostname of this proxy */ 104 apr_port_t port; /* the port for this proxy */ 138 proxy_worker *forward; /* forward proxy worker */ 139 proxy_worker *reverse; /* reverse "module-driven" proxy worker */ 143 int req; /* true if proxy requests are enabled */ 151 } viaopt; /* how to deal with proxy Via: headers */ 229 * copy of the reverse proxy confi [all...] |
| H A D | mod_proxy.c | 39 static const char * const proxy_id = "proxy"; 43 * A Web proxy module. Stages: 45 * translate_name: set filename to proxy:<URL> 52 * handler: handle proxy requests 509 * short-circuit the proxy... just because of the ordering in the 529 r->filename = apr_pstrcat(r->pool, "proxy:", r->uri, NULL); 530 r->handler = "proxy-server"; 539 r->filename = apr_pstrcat(r->pool, "proxy:", r->uri, NULL); 540 r->handler = "proxy-server"; 654 found = apr_pstrcat(r->pool, "proxy 2913 AP_DECLARE_MODULE(proxy) = variable [all...] |
| H A D | mod_proxy_scgi.c | 214 r->filename = apr_pstrcat(r->pool, "proxy:" SCHEME "://", host, sport, "/", 217 if (apr_table_get(r->subprocess_env, "proxy-scgi-pathinfo")) { 660 APR_OPTIONAL_HOOK(proxy, request_status, scgi_request_status, NULL, NULL,
|
| H A D | proxy_util.c | 17 /* Utility routines for Apache proxy */ 43 APLOG_USE_MODULE(proxy); variable 47 * using a forward proxy. 88 APR_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL(proxy, PROXY, int, create_req, 385 "The proxy server could not handle the request <em><a href=\"", 802 * i.e. the forward address proxy case, where this server does 1704 * own; ie: the generic reverse-proxy or a worker 1979 * In the case of the reverse proxy, we need to see if we 1988 if (!strncmp(r->filename, "proxy:", 6) && 2000 /* r->filename starts w/ "proxy [all...] |
| /httpd/modules/ssl/ |
| H A D | ssl_engine_config.c | 173 mctx = sc->proxy = apr_palloc(p, sizeof(*sc->proxy)); 374 modssl_ctx_cfg_merge_proxy(p, base->proxy, add->proxy, mrg->proxy); 1390 sc->proxy->protocol_set = 1; 1391 return ssl_cmd_protocol_parse(cmd, arg, &sc->proxy->protocol); 1403 sc->proxy->auth.cipher_suite = arg; 1420 sc->proxy->auth.verify_mode = mode; 1437 sc->proxy [all...] |
| H A D | ssl_engine_init.c | 189 if (sc->proxy) { 190 sc->proxy->sc = sc; 339 if ((rv = ssl_run_init_server(s, p, 1, sc->proxy->ssl_ctx)) != APR_SUCCESS) { 509 SSLv3_client_method() : /* proxy */ 514 TLSv1_client_method() : /* proxy */ 520 TLSv1_1_client_method() : /* proxy */ 525 TLSv1_2_client_method() : /* proxy */ 531 SSLv23_client_method() : /* proxy */ 919 /* XXX: proxy support? */ 1262 "no client certs found for SSL proxy"); [all...] |
| H A D | ssl_private.h | 251 #define myCtxConfig(sslconn, sc) (sslconn->is_proxy ? sc->proxy : sc->server) 542 /** proxy can have any number of cert/key pairs */ 659 modssl_ctx_t *proxy; member in struct:SSLSrvConfigRec
|
| H A D | mod_ssl.c | 174 "SSL switch for the proxy protocol engine " 534 mctx = sslconn->is_proxy ? sc->proxy : sc->server;
|
| H A D | ssl_engine_kernel.c | 1568 STACK_OF(X509_INFO) *certs = sc->proxy->pkp->certs; 1601 ca_cert_chains = sc->proxy->pkp->ca_certs;
|
| H A D | ssl_engine_io.c | 471 * connection or for a proxy connection. Calling _out_flush 901 /* Custom apr_status_t error code, used when the proxy cannot 939 /* Send an error bucket, though the proxy currently has no 1126 "proxy-request-hostname"); 1141 sc->proxy->protocol != SSL_PROTOCOL_SSLV3 && 1182 apr_table_unset(c->notes, "proxy-request-hostname"); 1199 apr_table_unset(c->notes, "proxy-request-hostname");
|
| H A D | mod_ssl_ct.c | 21 * . proxy: an httpd child process validates SCTs from a server only on the 135 /* proxy mode only */ 1239 /* Theoretically this module could operate in a proxy-only 1240 * configuration, where httpd does not act as a TLS server but proxy is 1374 * SSL proxy enabled and server-specific-sconf->proxy_awareness 1378 APLOGNO(02718) "Directive CTAuditStorage isn't set; proxy " 1818 * process. (With reverse proxy it will be the same data over 2722 APR_OPTIONAL_HOOK(proxy, detach_backend, ssl_ct_detach_backend, NULL, NULL,
|
| /httpd/modules/filters/ |
| H A D | mod_proxy_html.c | 840 errmsg = "Non-proxy request; not inserting proxy-html filter"; 843 errmsg = "No content-type; bailing out of proxy-html filter"; 848 errmsg = "Non-HTML content; not inserting proxy-html filter"; 852 errmsg = "No links configured: nothing for proxy-html filter to do"; 1271 "Enable proxy-html and xml2enc filters"), 1306 ap_add_output_filter("proxy-html", NULL, r, r->connection); 1312 ap_register_output_filter_protocol("proxy-html", proxy_html_filter,
|
| /httpd/build/ |
| H A D | install-bindist.sh.in | 95 lmkdir $SR/proxy 750
|
| /httpd/server/ |
| H A D | core.c | 5242 APR_OPTIONAL_HOOK(proxy, create_req, core_create_proxy_req, NULL, NULL,
|