From: Stefan Fritsch Date: Mon, 4 Feb 2013 19:56:39 +0000 (+0000) Subject: Don't keepalive the connection to the client if the X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=06eb0687ee43f829eacc390401d7eef6749c05b1;p=thirdparty%2Fapache%2Fhttpd.git Don't keepalive the connection to the client if the backend closes the connection. PR: 54474 Submitted by: Pavel Mateja git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1442320 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index f1375a7d0b3..b7c0cbc7b9c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,9 @@ -*- coding: utf-8 -*- Changes with Apache 2.5.0 + *) mod_proxy_connect: Don't keepalive the connection to the client if the + backend closes the connection. PR 54474. [Pavel Mateja ] + *) core: Add option to add valgrind suport. Use it to reduce false positive warnings in mod_ssl. [Stefan Fritsch] diff --git a/modules/proxy/mod_proxy_connect.c b/modules/proxy/mod_proxy_connect.c index 0d008c68e65..c84f75b417a 100644 --- a/modules/proxy/mod_proxy_connect.c +++ b/modules/proxy/mod_proxy_connect.c @@ -487,6 +487,7 @@ static int proxy_connect_handler(request_rec *r, proxy_worker *worker, ap_lingering_close(backconn); c->aborted = 1; + c->keepalive = AP_CONN_CLOSE; return OK; }