mirror of
https://github.com/apache/httpd.git
synced 2025-07-29 12:10:29 +00:00
add pre_htaccess hook; in conjunction with earlier dirwalk_stat
and post_perdir_config hooks, this should allow mpm-itk to be used without patches to httpd core git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1389339 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -1321,6 +1321,15 @@ AP_DECLARE_HOOK(int,quick_handler,(request_rec *r, int lookup_uri))
|
||||
*/
|
||||
AP_DECLARE_HOOK(void,optional_fn_retrieve,(void))
|
||||
|
||||
/**
|
||||
* Allow modules to perform a check immediately prior to opening htaccess.
|
||||
* @param r The current request
|
||||
* @param filename The htaccess file which will be processed
|
||||
* @return HTTP status code to fail the operation, or DECLINED to let later
|
||||
* modules decide
|
||||
*/
|
||||
AP_DECLARE_HOOK(int,pre_htaccess,(request_rec *r, const char *filename))
|
||||
|
||||
/**
|
||||
* A generic pool cleanup that will reset a pointer to NULL. For use with
|
||||
* apr_pool_cleanup_register.
|
||||
|
Reference in New Issue
Block a user