]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
backport doc patch
authorStas Bekman <stas@apache.org>
Fri, 22 Aug 2003 20:35:32 +0000 (20:35 +0000)
committerStas Bekman <stas@apache.org>
Fri, 22 Aug 2003 20:35:32 +0000 (20:35 +0000)
PR:
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@101058 13f79535-47bb-0310-9956-ffa450edef68

include/util_filter.h

index 40926808b99614753a26c47fe8a14b50bdf9a07c..ff2baf77b45c18194621a4cfabaddc5e7015f78f 100644 (file)
@@ -329,8 +329,10 @@ AP_DECLARE(apr_status_t) ap_pass_brigade(ap_filter_t *filter,
  *
  * @param name The name to attach to the filter function
  * @param filter_func The filter function to name
- * @param ftype The type of filter function, either ::AP_FTYPE_CONTENT or ::
- *        AP_FTYPE_CONNECTION
+ * @param filter_init The function to call before the filter handlers 
+                      are invoked
+ * @param ftype The type of filter function, either ::AP_FTYPE_CONTENT or
+ *              ::AP_FTYPE_CONNECTION
  * @see add_input_filter()
  */
 AP_DECLARE(ap_filter_rec_t *) ap_register_input_filter(const char *name,
@@ -345,6 +347,8 @@ AP_DECLARE(ap_filter_rec_t *) ap_register_input_filter(const char *name,
  *
  * @param name The name to attach to the filter function
  * @param filter_func The filter function to name
+ * @param filter_init The function to call before the filter handlers 
+ *                    are invoked
  * @param ftype The type of filter function, either ::AP_FTYPE_CONTENT or
  *              ::AP_FTYPE_CONNECTION
  * @see ap_add_output_filter()
@@ -475,6 +479,8 @@ AP_DECLARE(apr_status_t) ap_save_brigade(ap_filter_t *f,
  * to flush the brigade if the brigade buffer overflows.
  * @param bb The brigade to flush
  * @param ctx The filter to pass the brigade to
+ * @note this function has nothing to do with FLUSH buckets. It is simply
+ * a way to flush content out of a brigade and down a filter stack.
  */
 AP_DECLARE_NONSTD(apr_status_t) ap_filter_flush(apr_bucket_brigade *bb,
                                                 void *ctx);