1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Initial Filtering code. This uses a bucket brigade scheme to allow modules

to add and modify data while processing a request.  The docs still need
to be updated, and a simple html page needs to be created explaining all
of this.

The only filter currently in the code is the core filter.  This filter
takes a bucket brigade and writes it to the network through the buff
structure.  In time, the buff will go away completely.

More filters will need to be written.
Submitted by:	The Apache Community
Reviewed by:	The Apache Community


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86059 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan Bloom
2000-08-12 18:45:35 +00:00
parent ca817f473c
commit 35d4c4a58c
8 changed files with 247 additions and 116 deletions

View File

@@ -1279,6 +1279,12 @@ static void process_request_internal(request_rec *r)
return;
}
/* We need to flush the data out at this point. We probably only want to
* do this on the main request, but this is fine for an initial patch.
* Once we look into this more, we won't flush sub-requests.
*/
ap_rflush(r);
/* Take care of little things that need to happen when we're done */
ap_finalize_request_protocol(r);
}