From: Jeff Trawick Date: Wed, 27 Feb 2002 15:36:23 +0000 (+0000) Subject: document the ctx parameter to the add-input-filter functions X-Git-Tag: 2.0.33~116 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b5912070c4b741f0f44f1d10c5c7aee0859adbe;p=thirdparty%2Fapache%2Fhttpd.git document the ctx parameter to the add-input-filter functions git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93596 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/util_filter.h b/include/util_filter.h index 95846f9f9ae..19d845afb96 100644 --- a/include/util_filter.h +++ b/include/util_filter.h @@ -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 */