]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
mod_ssl: follow up to r1705194, r1705823, r1705826 and r1705828.
authorYann Ylavic <ylavic@apache.org>
Tue, 29 Sep 2015 10:31:58 +0000 (10:31 +0000)
committerYann Ylavic <ylavic@apache.org>
Tue, 29 Sep 2015 10:31:58 +0000 (10:31 +0000)
Add CHANGES entry, and restore ap_process_request_after_handler()'s comment
as prior to r1705194 (the change makes no sense now).

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1705833 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/http/http_request.c

diff --git a/CHANGES b/CHANGES
index 522eda0317d86f5e818e9fef187cffff171e276e..c37d6f98bc231fa97157faf4c97c0fbc95df9b06 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.5.0
 
+  *) mod_ssl: Make the output filter more friendly with deferred write and
+     response pipelining. [Yann Ylavic, Joe Orton]
+
   *) core/util_script: relax alphanumeric filter of environment variable names
      on Windows to allow '(' and ')' for passing PROGRAMFILES(X86) et.al.
      unadulterated in 64 bit versions of Windows. PR 46751.  
index cbf88404684aa00588ec987759376e2a8848763b..0143a2e73fbc45a1a981833313b5157fdf1d4e8a 100644 (file)
@@ -256,8 +256,8 @@ AP_DECLARE(void) ap_process_request_after_handler(request_rec *r)
     apr_bucket *b;
     conn_rec *c = r->connection;
 
-    /* Send an EOR bucket (alone!) through the output filter chain.
-     * When this bucket is destroyed, the request will be logged and
+    /* Send an EOR bucket through the output filter chain.  When
+     * this bucket is destroyed, the request will be logged and
      * its pool will be freed
      */
     bb = apr_brigade_create(c->pool, c->bucket_alloc);