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

Function ssl_cmd_SSLProxyCACertificateFile

modules/ssl/ssl_engine_config.c:1614–1628  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1612}
1613
1614const char *ssl_cmd_SSLProxyCACertificateFile(cmd_parms *cmd,
1615 void *dcfg,
1616 const char *arg)
1617{
1618 SSLDirConfigRec *dc = (SSLDirConfigRec *)dcfg;
1619 const char *err;
1620
1621 if ((err = ssl_cmd_check_file(cmd, &arg))) {
1622 return err;
1623 }
1624
1625 dc->proxy->auth.ca_cert_file = arg;
1626
1627 return NULL;
1628}
1629
1630const char *ssl_cmd_SSLProxyCACertificatePath(cmd_parms *cmd,
1631 void *dcfg,

Callers

nothing calls this directly

Calls 1

ssl_cmd_check_fileFunction · 0.85

Tested by

no test coverage detected