From: William A. Rowe Jr Date: Fri, 19 Jan 2001 18:38:34 +0000 (+0000) Subject: By popular review X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~164 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=850f8cc33ac248d7e91c21856d4fc0eaac843eee;p=apache By popular review git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87739 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_connection.h b/include/http_connection.h index 8f0d2264fd..e43aed2fb3 100644 --- a/include/http_connection.h +++ b/include/http_connection.h @@ -98,7 +98,7 @@ int ap_pre_http_connection(conn_rec *); * @param c The connection on which the request is read * @return OK or DECLINED */ -int ap_process_http_connection(conn_rec *); +AP_CORE_DECLARE(int) ap_process_http_connection(conn_rec *); AP_CORE_DECLARE(void) ap_flush_conn(conn_rec *c); diff --git a/server/connection.c b/server/connection.c index e7e49cea38..3231c5fa39 100644 --- a/server/connection.c +++ b/server/connection.c @@ -230,7 +230,7 @@ int ap_pre_http_connection(conn_rec *c) return OK; } -int ap_process_http_connection(conn_rec *c) +AP_CORE_DECLARE(int) ap_process_http_connection(conn_rec *c) { request_rec *r;