diff options
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 |