not necessarily a bucket brigade.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86076
13f79535-47bb-0310-9956-
ffa450edef68
ap_filter_func filter_func;
/** A place to store any data associated with the current filter */
- ap_bucket_brigade *ctx;
+ void *ctx;
/** The type of filter, either AP_FTYPE_CONTENT or AP_FTYPE_CONNECTION.
* An AP_FTYPE_CONTENT filter modifies the data based on information
* data based on the type of connection.
*/
ap_filter_type ftype;
+
/** The next filter in the chain */
ap_filter_t *next;
+
/** The request_rec associated with the current filter. If a sub-request
* adds filters, then the sub-request is the request associated with the
* filter.