From: William A. Rowe Jr Date: Thu, 23 Aug 2001 00:06:27 +0000 (+0000) Subject: Complete the rename of the ssl_scache_status_register and X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=baf88df28a8e6f27c1f1e0e7af4f8821817673a1;p=thirdparty%2Fapache%2Fhttpd.git Complete the rename of the ssl_scache_status_register and ssl_ext_proxy_register (which has yet to be renamed for it's future location, since I'm not going further at the moment with implementing it's functionallity, all my focus is on the ssl_var_register arm.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@90524 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/mod_ssl.c b/mod_ssl.c index 086cb9bd96b..3ad296eccf0 100644 --- a/mod_ssl.c +++ b/mod_ssl.c @@ -211,9 +211,9 @@ static void ssl_hook_pre_config( ssl_var_log_config_register(pconf); #if 0 /* XXX */ /* XXX: Register us to handle mod_proxy extensions that don't exist yet */ - ssl_ext_mp_register(pconf); + ssl_ext_proxy_register(pconf); /* XXX: Register us to handle mod_status extensions that don't exist yet */ - ssl_ext_ms_register(pconf); + ssl_scache_status_register(pconf); #endif /* -0- */ } diff --git a/mod_ssl.h b/mod_ssl.h index a929af1a139..dab123b0a93 100644 --- a/mod_ssl.h +++ b/mod_ssl.h @@ -612,6 +612,9 @@ void ssl_callback_LogTracingState(SSL *, int, int); /* Session Cache Support */ void ssl_scache_init(server_rec *, apr_pool_t *); +#if 0 /* XXX */ +void ssl_scache_status_register(apr_pool_t *p); +#endif void ssl_scache_kill(server_rec *); BOOL ssl_scache_store(server_rec *, UCHAR *, int, time_t, SSL_SESSION *); SSL_SESSION *ssl_scache_retrieve(server_rec *, UCHAR *, int); @@ -683,10 +686,9 @@ void ssl_var_register(void); char *ssl_var_lookup(apr_pool_t *, server_rec *, conn_rec *, request_rec *, char *); void ssl_var_log_config_register(apr_pool_t *p); -/* Extensions */ +/* Proxy Extensions */ #if 0 /* XXX */ void ssl_ext_proxy_register(apr_pool_t *p); -void ssl_ext_ms_register(apr_pool_t *p); #endif /* -0- */ /* I/O */ diff --git a/ssl_engine_ext.c b/ssl_engine_ext.c index fac590521d1..76aa63ff581 100644 --- a/ssl_engine_ext.c +++ b/ssl_engine_ext.c @@ -598,4 +598,4 @@ static int ssl_ext_mp_verify_cb(int ok, X509_STORE_CTX *ctx) #endif /* SSL_EXPERIMENTAL_PROXY */ -#endif /* XXX */ \ No newline at end of file +#endif /* XXX */ diff --git a/ssl_scache.c b/ssl_scache.c index a485e8cb569..d3992380f99 100644 --- a/ssl_scache.c +++ b/ssl_scache.c @@ -184,7 +184,7 @@ void ssl_scache_expire(server_rec *s) static void ssl_ext_ms_display(request_rec *, int, int); -static void ssl_scache_status_register(void) +void ssl_scache_status_register(apr_pool_t *p) { /* XXX point mod_status to this update, when it grows the opt fn */ #if 0