summaryrefslogtreecommitdiffstats
path: root/include/http_connection.h
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2001-11-13 21:10:11 +0100
committerRyan Bloom <rbb@apache.org>2001-11-13 21:10:11 +0100
commit22b467666a1df347050368d3cd244595ee30734d (patch)
treeda7307129e181b43d23bcb26561a212617acc0ac /include/http_connection.h
parentMisc. cleanups and performance enhancements (diff)
downloadapache2-22b467666a1df347050368d3cd244595ee30734d.tar.xz
apache2-22b467666a1df347050368d3cd244595ee30734d.zip
Remove ap_new_connection from the header. I missed this when I removed
the function. Submitted by: Brad Nicholes <BNICHOLES@novell.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91911 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_connection.h')
-rw-r--r--include/http_connection.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/http_connection.h b/include/http_connection.h
index 3a61963771..e99cd398c6 100644
--- a/include/http_connection.h
+++ b/include/http_connection.h
@@ -68,17 +68,6 @@ extern "C" {
#ifdef CORE_PRIVATE
/**
- * Create a new connection.
- * @param p Pool to allocate data structures out of
- * @param server The server to create the connection for
- * @param inout The socket to use for all communication with the client
- * @param id ID of this connection; unique at any point in time.
- * @return new conn_rec, or NULL if the connection has already been reset
- */
-AP_CORE_DECLARE(conn_rec *)ap_new_connection(apr_pool_t *p, server_rec *server,
- apr_socket_t *inout, long id);
-
-/**
* This is the protocol module driver. This calls all of the
* pre-connection and connection hooks for all protocol modules.
* @param c The connection on which the request is read