From: Justin Erenkrantz Date: Sun, 12 Jan 2003 20:44:37 +0000 (+0000) Subject: Update documentation to match prototype for ap_register_input_filter and X-Git-Tag: pre_ajp_proxy~2295 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f3fa0f0260adadd7fa5ab05731a5f2872b5f2297;p=apache Update documentation to match prototype for ap_register_input_filter and ap_register_output_filter. Submitted by: Stas Bekman , Joe Schaefer Reviewed by: Justin Erenkrantz git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98244 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/util_filter.h b/include/util_filter.h index 0a9954e04a..a50cfcc778 100644 --- a/include/util_filter.h +++ b/include/util_filter.h @@ -328,8 +328,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, @@ -344,6 +346,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()