From: Ryan Bloom Date: Mon, 23 Apr 2001 17:28:58 +0000 (+0000) Subject: Document the new argument to ap_get_brigade() X-Git-Tag: 2.0.18~177 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0765217fbaa93b169c2a89fea0cd93361d61e1ee;p=apache Document the new argument to ap_get_brigade() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88919 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/util_filter.h b/include/util_filter.h index 1b9e2490ef..17e5c0acad 100644 --- a/include/util_filter.h +++ b/include/util_filter.h @@ -272,6 +272,8 @@ struct ap_filter_t { * @param filter The next filter in the chain * @param bucket The current bucket brigade * @param mode ::AP_MODE_BLOCKING, ::AP_MODE_NONBLOCKING, or ::AP_MODE_PEEK + * @param readbytes How many bytes to read from the next filter. 0 means that + * a single line should be read. */ AP_DECLARE(apr_status_t) ap_get_brigade(ap_filter_t *filter, apr_bucket_brigade *bucket, ap_input_mode_t mode, apr_size_t *readbytes);