Lines Matching refs:forward

47  * using a forward proxy.
802 * i.e. the forward address proxy case, where this server does
2031 if (conf->forward) {
2033 "*: found forward proxy worker for %s", *url);
2035 *worker = conf->forward;
2038 * The forward worker does not keep connections alive, so
2272 /* Unless we are connecting the backend via a (forward Proxy)Remote, we
2330 * If we have a forward proxy and the protocol is HTTPS,
2338 forward_info *forward = apr_pcalloc(conn->pool, sizeof(forward_info));
2339 conn->forward = forward;
2340 forward->use_http_connect = 1;
2341 forward->target_host = apr_pstrdup(conn->pool, uri->hostname);
2342 forward->target_port = uri->port;
2354 forward->proxy_auth = apr_pstrdup(conn->pool, proxy_auth);
2452 else if (conn->forward
2453 && ((forward_info *)(conn->forward))->use_http_connect) {
2454 ssl_hostname = ((forward_info *)conn->forward)->target_host;
2550 * Send a HTTP CONNECT request to a forward proxy.
2552 * is contained in the "forward" member of "backend".
2563 forward_info *forward = (forward_info *)backend->forward;
2569 forward->target_host, forward->target_port,
2574 forward->target_host, forward->target_port);
2576 if (forward->proxy_auth != NULL) {
2579 forward->proxy_auth);
2623 "send_http_connect: response from the forward proxy: %s",
2634 "send_http_connect: the forward proxy returned code is '%s'",
2867 if (!conn->uds_path && conn->forward) {
2868 forward_info *forward = (forward_info *)conn->forward;
2873 if (forward->use_http_connect) {
2884 forward->target_host, forward->target_port,
3367 * According to RFC 2616 8.2.3 we are not allowed to forward an
3475 /* Don't forward any "100 Continue" response if the client is
3501 * In a forward proxy situation, these options are a potential
3507 * a forward proxy configuation instead of X-Forwarded-*. See the