]> granicus.if.org Git - apache/commitdiff
Update documentation to match prototype for ap_register_input_filter and
authorJustin Erenkrantz <jerenkrantz@apache.org>
Sun, 12 Jan 2003 20:44:37 +0000 (20:44 +0000)
committerJustin Erenkrantz <jerenkrantz@apache.org>
Sun, 12 Jan 2003 20:44:37 +0000 (20:44 +0000)
ap_register_output_filter.

Submitted by: Stas Bekman <stas@stason.org>,
              Joe Schaefer <joe+apache@sunstarsys.com>
Reviewed by: Justin Erenkrantz

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

include/util_filter.h

index 0a9954e04ab9a93be787e92ca76552aa2f509f2f..a50cfcc7781927556fc7b7167ba9cc01dc11fd22 100644 (file)
@@ -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()