]> granicus.if.org Git - apache/commitdiff
document the ctx parameter to the add-input-filter functions
authorJeff Trawick <trawick@apache.org>
Wed, 27 Feb 2002 15:36:23 +0000 (15:36 +0000)
committerJeff Trawick <trawick@apache.org>
Wed, 27 Feb 2002 15:36:23 +0000 (15:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93596 13f79535-47bb-0310-9956-ffa450edef68

include/util_filter.h

index 95846f9f9ae1b4030715efb7ad649b2b59b5c1e0..19d845afb96a3b70c4dbd9619778330f5be2ca84 100644 (file)
@@ -346,6 +346,7 @@ AP_DECLARE(ap_filter_rec_t *) ap_register_output_filter(const char *name,
  * list of filters.  Take note of that when adding your filter to the chain.
  *
  * @param name The name of the filter to add
+ * @param ctx Context data to provide to the filter
  * @param r The request to add this filter for (or NULL if it isn't associated with a request)
  * @param c The connection to add the fillter for
  */
@@ -357,6 +358,7 @@ AP_DECLARE(ap_filter_t *) ap_add_input_filter(const char *name, void *ctx,
  * (as returned by ap_register_input_filter()) rather than a filter name
  *
  * @param name The filter to add
+ * @param ctx Context data to provide to the filter
  * @param r The request to add this filter for (or NULL if it isn't associated with a request)
  * @param c The connection to add the fillter for
  */