diff options
Diffstat (limited to 'include/http_request.h')
-rw-r--r-- | include/http_request.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/http_request.h b/include/http_request.h index 5f05668177..7e8bfad122 100644 --- a/include/http_request.h +++ b/include/http_request.h @@ -364,6 +364,18 @@ AP_DECLARE_HOOK(int,create_request,(request_rec *r)) /** * This hook allow modules an opportunity to translate the URI into an + * actual filename, before URL decoding happens. + * @param r The current request + * @return DECLINED to let other modules handle the pre-translation, + * OK if it was handled and no other module should process it, + * DONE if no further transformation should happen on the URI, + * HTTP_... in case of error. + * @ingroup hooks + */ +AP_DECLARE_HOOK(int,pre_translate_name,(request_rec *r)) + +/** + * This hook allow modules an opportunity to translate the URI into an * actual filename. If no modules do anything special, the server's default * rules will be followed. * @param r The current request |