]> granicus.if.org Git - apache/commitdiff
By popular review
authorWilliam A. Rowe Jr <wrowe@apache.org>
Fri, 19 Jan 2001 18:38:34 +0000 (18:38 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Fri, 19 Jan 2001 18:38:34 +0000 (18:38 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87739 13f79535-47bb-0310-9956-ffa450edef68

include/http_connection.h
server/connection.c

index 8f0d2264fdb65f580b8ed5730727d8c7cbcf9824..e43aed2fb311dcc15fd629dbfa4308830d72bca8 100644 (file)
@@ -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);
 
index e7e49cea38649ef2fd0e5e9e3284980e85a8f7f5..3231c5fa3900c29515e55440e5e1612ba714147b 100644 (file)
@@ -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;