From 0959bde2cc6545b3afbf42a8e22dc31b7adf331a Mon Sep 17 00:00:00 2001 From: Stas Bekman Date: Fri, 22 Aug 2003 20:40:13 +0000 Subject: [PATCH] clarify that filter_init_func is used only in the http protocol filters PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101059 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 ff2baf77b4..b086398a4d 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.50.1