MCPcopy Create free account
hub / github.com/apache/httpd / ssl_get_effective_config

Function ssl_get_effective_config

modules/ssl/ssl_engine_vars.c:58–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56static char *ssl_var_lookup_ssl_compress_meth(SSL *ssl);
57
58static SSLConnRec *ssl_get_effective_config(conn_rec *c)
59{
60 SSLConnRec *sslconn = myConnConfig(c);
61 if (!(sslconn && sslconn->ssl) && c->master) {
62 /* use master connection if no SSL defined here */
63 sslconn = myConnConfig(c->master);
64 }
65 return sslconn;
66}
67
68static int ssl_conn_is_ssl(conn_rec *c)
69{

Callers 5

ssl_conn_is_sslFunction · 0.85
expr_var_fnFunction · 0.85
ssl_var_lookupFunction · 0.85
ssl_ext_listFunction · 0.85
ssl_var_log_handler_cFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected