From: Brian Pane Date: Tue, 2 Jul 2002 21:35:19 +0000 (+0000) Subject: Replaced ap_add_input_filter() call with cheaper ap_add_input_filter_handle() X-Git-Tag: 2.0.40~334 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6baa119a047c33405003e0e83e6a158b04257d0;p=thirdparty%2Fapache%2Fhttpd.git Replaced ap_add_input_filter() call with cheaper ap_add_input_filter_handle() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95940 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/core.c b/server/core.c index 3a066f5ecf7..c775fa8645b 100644 --- a/server/core.c +++ b/server/core.c @@ -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; }