summaryrefslogtreecommitdiff
path: root/include/http_connection.h
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2001-11-13 20:29:54 +0000
committerRyan Bloom <rbb@apache.org>2001-11-13 20:29:54 +0000
commit695081280d26b4a02b819e5420eb335c84e0b990 (patch)
treef1adf903046c7b9473ee7f8b91e95068744c54a2 /include/http_connection.h
parentccb09e13da01852bb9354a5d0265b53659899e9d (diff)
downloadhttpd-695081280d26b4a02b819e5420eb335c84e0b990.tar.gz
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.h2
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
}