core: Add post_perdir_config hook.

Submitted by: Steinar Gunderson <sgunderson bigfoot.com>

trawick added/fixed include/ pieces


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1368121 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jeff Trawick
2012-08-01 16:54:00 +00:00
parent ea66bb37ca
commit 7479b23caa
4 changed files with 22 additions and 1 deletions

View File

@ -528,6 +528,16 @@ AP_DECLARE(void) ap_hook_check_authz(ap_HOOK_auth_checker_t *pf,
*/
AP_DECLARE_HOOK(void,insert_filter,(request_rec *r))
/**
* This hook allows modules to affect the request immediately after the
* per-directory configuration for the request has been generated.
* @param r The current request
* @return OK (allow acces), DECLINED (let later modules decide),
* or HTTP_... (deny access)
* @ingroup hooks
*/
AP_DECLARE_HOOK(int,post_perdir_config,(request_rec *r))
AP_DECLARE(int) ap_location_walk(request_rec *r);
AP_DECLARE(int) ap_directory_walk(request_rec *r);
AP_DECLARE(int) ap_file_walk(request_rec *r);