diff options
author | Ryan Bloom <rbb@apache.org> | 1999-08-31 05:35:52 +0000 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 1999-08-31 05:35:52 +0000 |
commit | c37f14ddf32319a7d84a9b573a54ccde8f37c5ff (patch) | |
tree | 1f1dd08b2e53226b3b3363beee02eeb57a8061ca /include/http_connection.h | |
parent | e6991d4075b55b175a6fb0cfe849566f863f27ac (diff) | |
download | httpd-c37f14ddf32319a7d84a9b573a54ccde8f37c5ff.tar.gz |
Changed pools to contexts. Tested with prefork and pthread mpm's. I'll
check this out tomorrow and make sure everything was checked in correctly.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83852 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_connection.h')
-rw-r--r-- | include/http_connection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/http_connection.h b/include/http_connection.h index 7faf1080cb..30be9e9dce 100644 --- a/include/http_connection.h +++ b/include/http_connection.h @@ -64,7 +64,7 @@ extern "C" { #endif -conn_rec *ap_new_connection(pool *p, server_rec *server, BUFF *inout, +conn_rec *ap_new_connection(ap_context_t *p, server_rec *server, BUFF *inout, const struct sockaddr_in *remaddr, const struct sockaddr_in *saddr, long id); CORE_EXPORT(void) ap_process_connection(conn_rec *); |