mirror of
https://github.com/apache/httpd.git
synced 2025-07-25 16:11:32 +00:00
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:
@ -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);
|
||||
|
Reference in New Issue
Block a user