From ef71a84f4a0bb25cb6c45c48a5ed481e60ec5034 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Wed, 27 Feb 2002 15:36:23 +0000 Subject: [PATCH] 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 --- include/util_filter.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/util_filter.h b/include/util_filter.h index 95846f9f9a..19d845afb9 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 */ -- 2.50.1