From: Ruediger Pluem Date: Sun, 16 Oct 2005 10:31:45 +0000 (+0000) Subject: * Cleanup: Remove dead code. No functional change. X-Git-Tag: 2.3.0~2870 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6163d2035172564ee9eab75dd2c75d889d1d4978;p=thirdparty%2Fapache%2Fhttpd.git * Cleanup: Remove dead code. No functional change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@322464 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy_ajp.c b/modules/proxy/mod_proxy_ajp.c index 526e31ffda8..c4fec745470 100644 --- a/modules/proxy/mod_proxy_ajp.c +++ b/modules/proxy/mod_proxy_ajp.c @@ -365,9 +365,6 @@ static int proxy_ajp_handler(request_rec *r, proxy_worker *worker, * of the connection when the socket was opened. */ apr_pool_t *p = r->connection->pool; -#if 0 - conn_rec *c = r->connection; -#endif apr_uri_t *uri = apr_palloc(r->connection->pool, sizeof(*uri)); @@ -378,17 +375,7 @@ static int proxy_ajp_handler(request_rec *r, proxy_worker *worker, } ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server, "proxy: AJP: serving URL %s", url); - - /* only use stored info for top-level pages. Sub requests don't share - * in keepalives - */ -#if 0 - if (!r->main) { - backend = (proxy_conn_rec *) ap_get_module_config(c->conn_config, - &proxy_ajp_module); - } -#endif /* create space for state information */ if (!backend) { status = ap_proxy_acquire_connection(scheme, &backend, worker, r->server); @@ -399,11 +386,6 @@ static int proxy_ajp_handler(request_rec *r, proxy_worker *worker, } return status; } -#if 0 - if (!r->main) { - ap_set_module_config(c->conn_config, &proxy_ajp_module, backend); - } -#endif } backend->is_ssl = 0; @@ -425,29 +407,12 @@ static int proxy_ajp_handler(request_rec *r, proxy_worker *worker, status = HTTP_SERVICE_UNAVAILABLE; goto cleanup; } -#if 0 - /* XXX: we don't need to create the bound client connection */ - - /* Step Three: Create conn_rec */ - if (!backend->connection) { - status = ap_proxy_connection_create(scheme, backend, c, r->server); - if (status != OK) - goto cleanup; - } -#endif - - /* Step Four: Process the Request */ + /* Step Three: Process the Request */ status = ap_proxy_ajp_request(p, r, backend, origin, dconf, uri, url, server_portstr); - if (status != OK) - goto cleanup; cleanup: -#if 0 - /* Clear the module config */ - ap_set_module_config(c->conn_config, &proxy_ajp_module, NULL); -#endif /* Do not close the socket */ ap_proxy_release_connection(scheme, backend, r->server); return status;