diff options
author | Ryan Bloom <rbb@apache.org> | 2001-11-14 01:38:16 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-11-14 01:38:16 +0100 |
commit | 790872b8696bdfcfde83a5858622554c8db7f463 (patch) | |
tree | 6caf59bf09579a1765d5f162dc4352d17d099b02 /server | |
parent | Allow modules that add sockets to the ap_listeners list to (diff) | |
download | apache2-790872b8696bdfcfde83a5858622554c8db7f463.tar.xz apache2-790872b8696bdfcfde83a5858622554c8db7f463.zip |
Move this to a HOOK_MIDDLE location. We need to add some logic to
make sure that we have a socket that the core controls if we do this,
but it is more correct.
Submitted by: Greg Stein
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91922 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server')
-rw-r--r-- | server/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/core.c b/server/core.c index 7e4a0ef82d..1209cf545a 100644 --- a/server/core.c +++ b/server/core.c @@ -3340,7 +3340,7 @@ static void register_hooks(apr_pool_t *p) ap_hook_type_checker(do_nothing,NULL,NULL,APR_HOOK_REALLY_LAST); ap_hook_fixups(core_override_type,NULL,NULL,APR_HOOK_REALLY_FIRST); ap_hook_access_checker(do_nothing,NULL,NULL,APR_HOOK_REALLY_LAST); - ap_hook_create_connection(core_create_conn, NULL, NULL, APR_HOOK_REALLY_LAST); + ap_hook_create_connection(core_create_conn, NULL, NULL, APR_HOOK_MIDDLE); ap_hook_create_request(core_create_req, NULL, NULL, APR_HOOK_MIDDLE); APR_OPTIONAL_HOOK(proxy, create_req, core_create_proxy_req, NULL, NULL, APR_HOOK_MIDDLE); |