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:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user