From 54645b55a043ac389bef2c8960bf72d4c0f1e9eb Mon Sep 17 00:00:00 2001 From: Stas Bekman Date: Fri, 22 Aug 2003 20:40:59 +0000 Subject: [PATCH] backport a doc patch: clarify that filter_init_func is invoked only for http filters PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@101060 13f79535-47bb-0310-9956-ffa450edef68 --- include/util_filter.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/util_filter.h b/include/util_filter.h index ff2baf77b45..b086398a4d7 100644 --- a/include/util_filter.h +++ b/include/util_filter.h @@ -250,7 +250,10 @@ struct ap_filter_rec_t { const char *name; /** The function to call when this filter is invoked. */ ap_filter_func filter_func; - /** The function to call before the handlers are invoked. */ + /** The function to call before the handlers are invoked. Notice + * that this function is called only for filters participating in + * the http protocol. Filters for other protocols are to be + * initiliazed by the protocols themselves. */ ap_init_filter_func filter_init_func; /** The type of filter, either AP_FTYPE_CONTENT or AP_FTYPE_CONNECTION. * An AP_FTYPE_CONTENT filter modifies the data based on information -- 2.47.2