diff options
author | Ryan Bloom <rbb@apache.org> | 2000-04-14 17:59:20 +0200 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2000-04-14 17:59:20 +0200 |
commit | de3a77dc016d09f7a065448efa3c745b73cf9c42 (patch) | |
tree | 67f5e3fba093eb416fe4bbca701cd6187d3364cc /include/http_connection.h | |
parent | Fix minor configuration & platform dependencies (diff) | |
download | apache2-de3a77dc016d09f7a065448efa3c745b73cf9c42.tar.xz apache2-de3a77dc016d09f7a065448efa3c745b73cf9c42.zip |
Change ap_context_t to ap_pool_t. This compiles, runs, and serves pages
on Linux, but probably breaks somewhere.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84963 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_connection.h')
-rw-r--r-- | include/http_connection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/http_connection.h b/include/http_connection.h index 86c1ee2367..e4891f7360 100644 --- a/include/http_connection.h +++ b/include/http_connection.h @@ -63,10 +63,10 @@ extern "C" { #endif #ifdef CORE_PRIVATE -conn_rec *ap_new_connection(ap_context_t *p, server_rec *server, BUFF *inout, +conn_rec *ap_new_connection(ap_pool_t *p, server_rec *server, BUFF *inout, const struct sockaddr_in *remaddr, const struct sockaddr_in *saddr, long id); -conn_rec *ap_new_apr_connection(ap_context_t *p, server_rec *server, BUFF *inout, +conn_rec *ap_new_apr_connection(ap_pool_t *p, server_rec *server, BUFF *inout, const ap_socket_t *conn_socket, long id); CORE_EXPORT(void) ap_process_connection(conn_rec *); int ap_process_http_connection(conn_rec *); |