====== Weitere Hooks ====== * ap_hook_child_init(): Place a hook that executes when a child process is spawned (commonly used for initializing modules after the server has forked). * ap_hook_pre_config(): Place a hook that executes before any configuration data has been read (very early hook). * ap_hook_post_config(): Place a hook that executes after configuration has been parsed, but before the server has forked. * ap_hook_translate_name(): Place a hook that executes when a URI needs to be translated into a filename on the server (think mod_rewrite). * ap_hook_quick_handler(): Similar to ap_hook_handler, except it is run before any other request hooks (translation, auth, fixups etc). * ap_hook_log_transaction(): Place a hook that executes when the server is about to add a log entry of the current request. Komplette Liste befindet sich unter [[https://ci.apache.org/projects/httpd/trunk/doxygen/group__hooks.html]] Auch das Apache-Modul **modules/examples/mod_example_hooks.c** bietet viel Infos über die Nutzung von Hooks. ---- Stand: 26.07.2018 EOF