mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
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@90524 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -211,9 +211,9 @@ static void ssl_hook_pre_config(
|
|||||||
ssl_var_log_config_register(pconf);
|
ssl_var_log_config_register(pconf);
|
||||||
#if 0 /* XXX */
|
#if 0 /* XXX */
|
||||||
/* XXX: Register us to handle mod_proxy extensions that don't exist yet */
|
/* 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 */
|
/* 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- */
|
#endif /* -0- */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -612,6 +612,9 @@ void ssl_callback_LogTracingState(SSL *, int, int);
|
|||||||
|
|
||||||
/* Session Cache Support */
|
/* Session Cache Support */
|
||||||
void ssl_scache_init(server_rec *, apr_pool_t *);
|
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 *);
|
void ssl_scache_kill(server_rec *);
|
||||||
BOOL ssl_scache_store(server_rec *, UCHAR *, int, time_t, SSL_SESSION *);
|
BOOL ssl_scache_store(server_rec *, UCHAR *, int, time_t, SSL_SESSION *);
|
||||||
SSL_SESSION *ssl_scache_retrieve(server_rec *, UCHAR *, int);
|
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 *);
|
char *ssl_var_lookup(apr_pool_t *, server_rec *, conn_rec *, request_rec *, char *);
|
||||||
void ssl_var_log_config_register(apr_pool_t *p);
|
void ssl_var_log_config_register(apr_pool_t *p);
|
||||||
|
|
||||||
/* Extensions */
|
/* Proxy Extensions */
|
||||||
#if 0 /* XXX */
|
#if 0 /* XXX */
|
||||||
void ssl_ext_proxy_register(apr_pool_t *p);
|
void ssl_ext_proxy_register(apr_pool_t *p);
|
||||||
void ssl_ext_ms_register(apr_pool_t *p);
|
|
||||||
#endif /* -0- */
|
#endif /* -0- */
|
||||||
|
|
||||||
/* I/O */
|
/* I/O */
|
||||||
|
@@ -598,4 +598,4 @@ static int ssl_ext_mp_verify_cb(int ok, X509_STORE_CTX *ctx)
|
|||||||
|
|
||||||
#endif /* SSL_EXPERIMENTAL_PROXY */
|
#endif /* SSL_EXPERIMENTAL_PROXY */
|
||||||
|
|
||||||
#endif /* XXX */
|
#endif /* XXX */
|
||||||
|
@@ -184,7 +184,7 @@ void ssl_scache_expire(server_rec *s)
|
|||||||
|
|
||||||
static void ssl_ext_ms_display(request_rec *, int, int);
|
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 */
|
/* XXX point mod_status to this update, when it grows the opt fn */
|
||||||
#if 0
|
#if 0
|
||||||
|
Reference in New Issue
Block a user