summaryrefslogtreecommitdiffstats
path: root/docs/manual/developer/modules.xml
diff options
context:
space:
mode:
authorChris Darroch <chrisd@apache.org>2006-10-11 21:39:42 +0200
committerChris Darroch <chrisd@apache.org>2006-10-11 21:39:42 +0200
commit10c3c49465ab67f87cd23e16c64bf9ab3a7b25ea (patch)
tree288e758b497ac036a430f69117749be7ac673d19 /docs/manual/developer/modules.xml
parentmod_disk_cache: Implement read-while-caching. (diff)
downloadapache2-10c3c49465ab67f87cd23e16c64bf9ab3a7b25ea.tar.xz
apache2-10c3c49465ab67f87cd23e16c64bf9ab3a7b25ea.zip
added pre_config, check_config, and test_config hooks
moved open_logs hook git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@462914 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--docs/manual/developer/modules.xml16
1 files changed, 13 insertions, 3 deletions
diff --git a/docs/manual/developer/modules.xml b/docs/manual/developer/modules.xml
index 8d5763fdc5..90352e75a1 100644
--- a/docs/manual/developer/modules.xml
+++ b/docs/manual/developer/modules.xml
@@ -200,6 +200,19 @@ module MODULE_VAR_EXPORT <var>module_name</var>_module =
far...</p>
<dl>
+ <dt><code>ap_hook_pre_config</code></dt>
+ <dd>do any setup required prior to processing configuration
+ directives</dd>
+
+ <dt><code>ap_hook_check_config</code></dt>
+ <dd>review configuration directive interdependencies</dd>
+
+ <dt><code>ap_hook_test_config</code></dt>
+ <dd>executes only with <code>-t</code> option</dd>
+
+ <dt><code>ap_hook_open_logs</code></dt>
+ <dd>open any specified logs</dd>
+
<dt><code>ap_hook_post_config</code></dt>
<dd>this is where the old <code>_init</code> routines get
registered</dd>
@@ -207,9 +220,6 @@ module MODULE_VAR_EXPORT <var>module_name</var>_module =
<dt><code>ap_hook_http_method</code></dt>
<dd>retrieve the http method from a request. (legacy)</dd>
- <dt><code>ap_hook_open_logs</code></dt>
- <dd>open any specified logs</dd>
-
<dt><code>ap_hook_auth_checker</code></dt>
<dd>check if the resource requires authorization</dd>