summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Querna <pquerna@apache.org>2005-05-12 07:39:49 +0000
committerPaul Querna <pquerna@apache.org>2005-05-12 07:39:49 +0000
commit79836e7aa8908b57640d549b0b89b0de194caa6f (patch)
tree69217132c22abc3c4bd0746ebd5a0a1e518a67f8
parent336ce4498823602acee17bbf2bc5ca8a6f96483e (diff)
downloadhttpd-79836e7aa8908b57640d549b0b89b0de194caa6f.tar.gz
- Show the Quick Handler Hook.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/listen-protocol@169788 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--CHANGES2
-rw-r--r--modules/generators/mod_info.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 104caabefb..52d40a81b4 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,8 @@
Changes with Apache 2.1.5
[Remove entries to the current 2.0 section below, when backported]
+
+ *) mod_info: Show the Quick Handler [Paul Querna]
*) mod_authnz_ldap: Add the directive AuthLDAPAllowDNAuth to allow
a user to authenticate against an LDAP directory using a full
diff --git a/modules/generators/mod_info.c b/modules/generators/mod_info.c
index cbf6742c1a..a944c380b9 100644
--- a/modules/generators/mod_info.c
+++ b/modules/generators/mod_info.c
@@ -252,7 +252,8 @@ static hook_lookup_t request_hooks[] = {
{"Header Parse", ap_hook_get_header_parser},
{"HTTP Scheme", ap_hook_get_http_scheme},
{"Default Port", ap_hook_get_default_port},
- {"Translate Path", ap_hook_get_translate_name},
+ {"Quick Handler", ap_hook_get_quick_handler},
+ {"Translate Name", ap_hook_get_translate_name},
{"Map to Storage", ap_hook_get_map_to_storage},
{"Check Access", ap_hook_get_access_checker},
{"Verify User ID", ap_hook_get_check_user_id},