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

Function ssl_log_cxerror

modules/ssl/ssl_engine_log.c:224–234  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

222}
223
224void ssl_log_cxerror(const char *file, int line, int level, apr_status_t rv,
225 conn_rec *c, const X509 *cert, const char *fmt, ...)
226{
227 if (APLOG_IS_LEVEL(mySrvFromConn(c),level)) {
228 va_list ap;
229 va_start(ap, fmt);
230 ssl_log_cert_error(file, line, level, rv, NULL, c, NULL, c->pool,
231 cert, fmt, ap);
232 va_end(ap);
233 }
234}
235
236void ssl_log_rxerror(const char *file, int line, int level, apr_status_t rv,
237 request_rec *r, const X509 *cert, const char *fmt, ...)

Callers 3

ssl_callback_SSLVerifyFunction · 0.85
modssl_proxy_info_logFunction · 0.85
verify_ocsp_statusFunction · 0.85

Calls 1

ssl_log_cert_errorFunction · 0.85

Tested by

no test coverage detected