diff options
author | Doug MacEachern <dougm@apache.org> | 2001-02-23 19:17:19 +0100 |
---|---|---|
committer | Doug MacEachern <dougm@apache.org> | 2001-02-23 19:17:19 +0100 |
commit | 24e2ea6b10ffc502cebc79107e9bcb9bcd661392 (patch) | |
tree | 0c7304d59c18067ba62eab82cdaba77a39db6a52 /include/http_config.h | |
parent | Remove the b1 description from ap_release. It doesn't belong there anymore. (diff) | |
download | apache2-24e2ea6b10ffc502cebc79107e9bcb9bcd661392.tar.xz apache2-24e2ea6b10ffc502cebc79107e9bcb9bcd661392.zip |
remove ap_{post_config,child_init}_hook
replace usage with ap_run_{post_config,child_init}
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88291 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_config.h')
-rw-r--r-- | include/http_config.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/include/http_config.h b/include/http_config.h index 1ccc10a5b0..929ac44ba2 100644 --- a/include/http_config.h +++ b/include/http_config.h @@ -792,16 +792,6 @@ AP_DECLARE(void) ap_show_modules(void); AP_DECLARE(server_rec *) ap_read_config(process_rec *process, apr_pool_t *temp_pool, const char *config_name, ap_directive_t **conftree); /** - * Run all post config hooks for loaded modules. - * @param pconf The configuration pool - * @param plog The logging pool - * @param ptemp The temporary pool - * @param s The list of server_rec structures - * @deffunc void ap_post_config_hook(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *s) - */ -AP_DECLARE(void) ap_post_config_hook(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *s); - -/** * Run all rewrite args hooks for loaded modules * @param process The process currently running the server * @deffunc void ap_run_rewrite_args(process_rec *process) @@ -906,15 +896,6 @@ void ap_process_resource_config(server_rec *s, const char *fname, AP_DECLARE(void) ap_process_config_tree(server_rec *s, ap_directive_t *conftree, apr_pool_t *p, apr_pool_t *ptemp); - -/* For individual MPMs... */ -/** - * Run all child init hooks - * @param pchild The pool for child process allocations - * @param s The list of all server_recs - */ -void ap_child_init_hook(apr_pool_t *pchild, server_rec *s); - /* Module-method dispatchers, also for http_request.c */ /** * Run the handler phase of each module until a module accepts the |