1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Activate ssl_hook_pre_config

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89815 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William A. Rowe Jr
2001-07-31 02:58:55 +00:00
parent 7abef4f5cd
commit dc44adeeff

View File

@@ -204,11 +204,10 @@ static const command_rec ssl_config_cmds[] = {
* the various processing hooks * the various processing hooks
*/ */
static int ssl_hook_pre_config( static void ssl_hook_pre_config(
apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp) apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp)
{ {
ssl_ext_register(pconf); ssl_ext_register(pconf);
return APR_SUCCESS;
} }
static int ssl_hook_post_read_request(request_rec *r) static int ssl_hook_post_read_request(request_rec *r)
@@ -488,9 +487,9 @@ static void ssl_register_hooks(apr_pool_t *p)
ap_hook_http_method (ssl_hook_http_method, NULL,NULL, APR_HOOK_MIDDLE); ap_hook_http_method (ssl_hook_http_method, NULL,NULL, APR_HOOK_MIDDLE);
ap_hook_default_port (ssl_hook_default_port, NULL,NULL, APR_HOOK_MIDDLE); ap_hook_default_port (ssl_hook_default_port, NULL,NULL, APR_HOOK_MIDDLE);
ap_hook_handler (ssl_hook_Handler, NULL,NULL, APR_HOOK_MIDDLE); ap_hook_handler (ssl_hook_Handler, NULL,NULL, APR_HOOK_MIDDLE);
ap_hook_pre_config (ssl_hook_pre_config, NULL,NULL, APR_HOOK_MIDDLE);
#if 0 /* XXX - Work in progress */ #if 0 /* XXX - Work in progress */
ap_hook_pre_config (ssl_hook_pre_config, NULL,NULL, APR_HOOK_MIDDLE);
ap_hook_child_init (ssl_init_Child, NULL,NULL, APR_HOOK_MIDDLE); ap_hook_child_init (ssl_init_Child, NULL,NULL, APR_HOOK_MIDDLE);
ap_hook_process_connection (ssl_hook_process_connection, ap_hook_process_connection (ssl_hook_process_connection,
NULL,NULL, APR_HOOK_MIDDLE); NULL,NULL, APR_HOOK_MIDDLE);