]> granicus.if.org Git - apache/commitdiff
Replaced ap_add_input_filter() call with cheaper ap_add_input_filter_handle()
authorBrian Pane <brianp@apache.org>
Tue, 2 Jul 2002 21:35:19 +0000 (21:35 +0000)
committerBrian Pane <brianp@apache.org>
Tue, 2 Jul 2002 21:35:19 +0000 (21:35 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95940 13f79535-47bb-0310-9956-ffa450edef68

server/core.c

index 3a066f5ecf7503c4289946fe005172c080ccd06a..c775fa8645b5c19bcde716b89fdafae83bfc283f 100644 (file)
@@ -4060,7 +4060,7 @@ static int core_pre_connection(conn_rec *c, void *csd)
     net->client_socket = csd;
 
     ap_set_module_config(net->c->conn_config, &core_module, csd);
-    ap_add_input_filter("CORE_IN", net, NULL, net->c);
+    ap_add_input_filter_handle(ap_core_input_filter_handle, net, NULL, net->c);
     ap_add_output_filter("CORE", net, NULL, net->c);
     return DONE;
 }