Commit 83cec24e authored by Ryan Bloom's avatar Ryan Bloom
Browse files

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
parent 0dc8f880
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);