]> git.ipfire.org Git - thirdparty/apache/httpd.git/commit
Allow the core_output_filter to save data in the filter past the end of
authorRyan Bloom <rbb@apache.org>
Sun, 5 Nov 2000 04:06:17 +0000 (04:06 +0000)
committerRyan Bloom <rbb@apache.org>
Sun, 5 Nov 2000 04:06:17 +0000 (04:06 +0000)
commit3f0129d314be965e8e110e30fa9d8820e4947d34
tree27c65f6dfd872ebc66e7347a9e9ce6d28e93395d
parent674737889d5aea1b266b56117664f0067bee4ea1
Allow the core_output_filter to save data in the filter past the end of
the first request if this is a keepalive connection.  This allows us to
save the end of the first request until we have enough data from the
second request to make it worthwhile to send the responses.  In order
to do this, we need to allocate mmap's from the connection pool instead
of the request pool.  If we don't use the connection pool, then the mmap
is freed before the data is sent, because the mmap is freed at the end of
the first request.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86840 13f79535-47bb-0310-9956-ffa450edef68
modules/http/http_core.c
modules/http/http_request.c