]> 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)
commit77e5b33c2eb4d65d2098794f270e8b794e2ccca0
tree27c65f6dfd872ebc66e7347a9e9ce6d28e93395d
parent0bd43d59a949f61ebf55b4d25e3aa5d09fa8c446
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