diff options
author | Doug MacEachern <dougm@apache.org> | 2000-08-02 07:27:38 +0200 |
---|---|---|
committer | Doug MacEachern <dougm@apache.org> | 2000-08-02 07:27:38 +0200 |
commit | 059d8dd2122f0a3948c2c09549159f0931a6f236 (patch) | |
tree | 8a2937938ed4eec31f918c6c8401ce07012cd37a /include/http_connection.h | |
parent | Use the AP_INIT_TAKE23() macro to clean up a maintainer-mode warning, (diff) | |
download | apache2-059d8dd2122f0a3948c2c09549159f0931a6f236.tar.xz apache2-059d8dd2122f0a3948c2c09549159f0931a6f236.zip |
prefix libapr functions and types with apr_
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85976 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_connection.h')
-rw-r--r-- | include/http_connection.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/http_connection.h b/include/http_connection.h index 0fb6000fa7..2b204bd6fc 100644 --- a/include/http_connection.h +++ b/include/http_connection.h @@ -76,7 +76,7 @@ extern "C" { * @param addr The server's local address * @param id ID of this connection; unique at any point in time. */ -conn_rec *ap_new_connection(ap_pool_t *p, server_rec *server, BUFF *inout, +conn_rec *ap_new_connection(apr_pool_t *p, server_rec *server, BUFF *inout, const struct sockaddr_in *remaddr, const struct sockaddr_in *saddr, long id); @@ -89,8 +89,8 @@ conn_rec *ap_new_connection(ap_pool_t *p, server_rec *server, BUFF *inout, * @param conn_socket The socket we are creating the connection on. * @param id ID of this connection; unique at any point in time. */ -conn_rec *ap_new_apr_connection(ap_pool_t *p, server_rec *server, BUFF *inout, - ap_socket_t *conn_socket, long id); +conn_rec *ap_new_apr_connection(apr_pool_t *p, server_rec *server, BUFF *inout, + apr_socket_t *conn_socket, long id); /** * This is the protocol module driver. This calls all of the |