From 54742942f284db85efa3d959d2f16723440f3929 Mon Sep 17 00:00:00 2001 From: Brian Pane Date: Tue, 2 Jul 2002 21:35:19 +0000 Subject: [PATCH] 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 --- server/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/core.c b/server/core.c index 3a066f5ecf..c775fa8645 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; } -- 2.40.0