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

Function stapling_mutex_off

modules/ssl/ssl_util_stapling.c:689–700  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

687}
688
689static int stapling_mutex_off(server_rec *s, apr_global_mutex_t *mutex,
690 const char *name)
691{
692 apr_status_t rv;
693
694 if ((rv = apr_global_mutex_unlock(mutex)) != APR_SUCCESS) {
695 ap_log_error(APLOG_MARK, APLOG_WARNING, rv, s, APLOGNO(01949)
696 "Failed to release OCSP %s lock", name);
697 return FALSE;
698 }
699 return TRUE;
700}
701
702static int stapling_cache_mutex_on(server_rec *s)
703{

Callers 2

stapling_cache_mutex_offFunction · 0.85

Calls 1

ap_log_errorFunction · 0.50

Tested by

no test coverage detected