From: Stas Bekman Date: Fri, 22 Aug 2003 20:40:59 +0000 (+0000) Subject: backport a doc patch: clarify that filter_init_func is invoked only for http X-Git-Tag: 2.0.48~118 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54645b55a043ac389bef2c8960bf72d4c0f1e9eb;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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