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

Function ssl_cmd_SSLProxyMachineCertificateChainFile

modules/ssl/ssl_engine_config.c:1719–1733  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1717}
1718
1719const char *ssl_cmd_SSLProxyMachineCertificateChainFile(cmd_parms *cmd,
1720 void *dcfg,
1721 const char *arg)
1722{
1723 SSLDirConfigRec *dc = (SSLDirConfigRec *)dcfg;
1724 const char *err;
1725
1726 if ((err = ssl_cmd_check_file(cmd, &arg))) {
1727 return err;
1728 }
1729
1730 dc->proxy->pkp->ca_cert_file = arg;
1731
1732 return NULL;
1733}
1734
1735const char *ssl_cmd_SSLUserName(cmd_parms *cmd, void *dcfg,
1736 const char *arg)

Callers

nothing calls this directly

Calls 1

ssl_cmd_check_fileFunction · 0.85

Tested by

no test coverage detected