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

Function ssl_mutex_off

modules/ssl/ssl_engine_mutex.c:99–110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97}
98
99int ssl_mutex_off(server_rec *s)
100{
101 SSLModConfigRec *mc = myModConfig(s);
102 apr_status_t rv;
103
104 if ((rv = apr_global_mutex_unlock(mc->pMutex)) != APR_SUCCESS) {
105 ap_log_error(APLOG_MARK, APLOG_WARNING, rv, s, APLOGNO(02027)
106 "Failed to release SSL session cache lock");
107 return FALSE;
108 }
109 return TRUE;
110}
111

Callers 4

ssl_scache_storeFunction · 0.85
ssl_scache_retrieveFunction · 0.85
ssl_scache_removeFunction · 0.85
ssl_ext_status_hookFunction · 0.85

Calls 1

ap_log_errorFunction · 0.50

Tested by

no test coverage detected