summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2000-10-06 08:07:07 +0200
committerRyan Bloom <rbb@apache.org>2000-10-06 08:07:07 +0200
commitbb8525b09d5c5bc9e4cefeec735a65de4feb5ca2 (patch)
treef52d18aff43ff414947d622545772526b3df47d3 /server
parentBe a little more explicit about the consequences of (diff)
downloadapache2-bb8525b09d5c5bc9e4cefeec735a65de4feb5ca2.tar.xz
apache2-bb8525b09d5c5bc9e4cefeec735a65de4feb5ca2.zip
Add the first draft of the http_filter. In time this filter will split
the bucket brigade between the headers and the body. Right now it just converts \r\n to \n\0. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86412 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server')
-rw-r--r--server/connection.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/connection.c b/server/connection.c
index e1b56fed52..92a4d22cf3 100644
--- a/server/connection.c
+++ b/server/connection.c
@@ -216,6 +216,7 @@ CORE_EXPORT(void) ap_process_connection(conn_rec *c)
int ap_pre_http_connection(conn_rec *c)
{
+ ap_add_input_filter("HTTP_IN", NULL, NULL, c);
ap_add_input_filter("CORE_IN", NULL, NULL, c);
ap_add_output_filter("CORE", NULL, NULL, c);
return OK;