summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-08-15 03:50:17 +0200
committerJeff Trawick <trawick@apache.org>2000-08-15 03:50:17 +0200
commit2c74169b708d8b09f7c97a2850cd5fddb89650b2 (patch)
tree3beff7064f34bb98c5ca74bfbdf124b5a1a251c5 /include
parentWin32: Enable lingering close. (diff)
downloadapache2-2c74169b708d8b09f7c97a2850cd5fddb89650b2.tar.xz
apache2-2c74169b708d8b09f7c97a2850cd5fddb89650b2.zip
Fix some typos in the comments.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86075 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/util_filter.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/util_filter.h b/include/util_filter.h
index 12d00d4c9e..1d38f8aa37 100644
--- a/include/util_filter.h
+++ b/include/util_filter.h
@@ -182,9 +182,10 @@ struct ap_filter_t {
/** A place to store any data associated with the current filter */
ap_bucket_brigade *ctx;
- /** The type of filter, either CONTENT or CONNECTION. A CONTENT filter
- * modifies the data based on information found in the content. A
- * CONNECTION filter modifies the data based on the type of connection.
+ /** The type of filter, either AP_FTYPE_CONTENT or AP_FTYPE_CONNECTION.
+ * An AP_FTYPE_CONTENT filter modifies the data based on information
+ * found in the content. An AP_FTYPE_CONNECTION filter modifies the
+ * data based on the type of connection.
*/
ap_filter_type ftype;
/** The next filter in the chain */
@@ -232,7 +233,7 @@ API_EXPORT(int) ap_pass_brigade(ap_filter_t *filter, ap_bucket_brigade *bucket);
* functions for later addition to a specific request
* @param name The name to attach to the filter function
* @param filter_func The filter function to name
- * @param The type of filter function, either CONTENT or CONNECTION
+ * @param The type of filter function, either AP_FTYPE_CONTENT or AP_FTYPE_CONNECTION
* @deffunc void ap_register_filter(const char *name, ap_filter_func filter_func, ap_filter_type ftype)
*/
API_EXPORT(void) ap_register_filter(const char *name,