diff options
author | Ryan Bloom <rbb@apache.org> | 2001-11-13 21:29:54 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-11-13 21:29:54 +0100 |
commit | 695081280d26b4a02b819e5420eb335c84e0b990 (patch) | |
tree | f1adf903046c7b9473ee7f8b91e95068744c54a2 /include/http_connection.h | |
parent | don't use a variable named stat, it can cause problems on some platforms. (diff) | |
download | apache2-695081280d26b4a02b819e5420eb335c84e0b990.tar.xz apache2-695081280d26b4a02b819e5420eb335c84e0b990.zip |
Add the server_rec argument back to the create_connection hook.
Submitted by: Greg Stein
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91913 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 e99cd398c6..eb48cfcdd0 100644 --- a/include/http_connection.h +++ b/include/http_connection.h @@ -130,7 +130,7 @@ AP_DECLARE_HOOK(int,process_connection,(conn_rec *c)) * @return An allocated connection record or NULL. */ AP_DECLARE_HOOK(conn_rec *, create_connection, - (apr_pool_t *p, apr_socket_t *csd, int conn_id)) + (apr_pool_t *p, server_rec *server, apr_socket_t *csd, int conn_id)) #ifdef __cplusplus } |