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

Function ssl_log_rxerror

modules/ssl/ssl_engine_log.c:236–246  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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, ...)
238{
239 if (APLOG_R_IS_LEVEL(r,level)) {
240 va_list ap;
241 va_start(ap, fmt);
242 ssl_log_cert_error(file, line, level, rv, NULL, NULL, r, r->pool,
243 cert, fmt, ap);
244 va_end(ap);
245 }
246}

Callers

nothing calls this directly

Calls 1

ssl_log_cert_errorFunction · 0.85

Tested by

no test coverage detected