summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-10-05 12:01:48 +0000
committerJeff Trawick <trawick@apache.org>2000-10-05 12:01:48 +0000
commita9a0b56629651ac5ad55228b0d0dd486f6844d16 (patch)
treed685cf5dc24ddd1c123e852b5e7310620ed8c321 /server
parentbf7aaebda614e19f493c6819ef45c548481412e1 (diff)
downloadhttpd-a9a0b56629651ac5ad55228b0d0dd486f6844d16.tar.gz
Now that we have ap_add_input_filter(), rename ap_add_filter() to
ap_add_output_filter(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86401 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server')
-rw-r--r--server/connection.c2
-rw-r--r--server/util_filter.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/server/connection.c b/server/connection.c
index 3eb453761f..e4dd226eba 100644
--- a/server/connection.c
+++ b/server/connection.c
@@ -217,7 +217,7 @@ CORE_EXPORT(void) ap_process_connection(conn_rec *c)
int ap_pre_http_connection(conn_rec *c)
{
ap_add_input_filter("CORE_IN", NULL, c);
- ap_add_filter("CORE", NULL, NULL, c);
+ ap_add_output_filter("CORE", NULL, NULL, c);
return OK;
}
diff --git a/server/util_filter.c b/server/util_filter.c
index f95532b6aa..1d26b8e194 100644
--- a/server/util_filter.c
+++ b/server/util_filter.c
@@ -148,8 +148,8 @@ API_EXPORT(void) ap_add_input_filter(const char *name, void *ctx, conn_rec *c)
}
}
-API_EXPORT(void) ap_add_filter(const char *name, void *ctx, request_rec *r,
- conn_rec *c)
+API_EXPORT(void) ap_add_output_filter(const char *name, void *ctx,
+ request_rec *r, conn_rec *c)
{
ap_filter_rec_t *frec = registered_output_filters;