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

Function ssl_cmd_SSLProxyMachineCertificateFile

modules/ssl/ssl_engine_config.c:1687–1701  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1685}
1686
1687const char *ssl_cmd_SSLProxyMachineCertificateFile(cmd_parms *cmd,
1688 void *dcfg,
1689 const char *arg)
1690{
1691 SSLDirConfigRec *dc = (SSLDirConfigRec *)dcfg;
1692 const char *err;
1693
1694 if ((err = ssl_cmd_check_file(cmd, &arg))) {
1695 return err;
1696 }
1697
1698 dc->proxy->pkp->cert_file = arg;
1699
1700 return NULL;
1701}
1702
1703const char *ssl_cmd_SSLProxyMachineCertificatePath(cmd_parms *cmd,
1704 void *dcfg,

Callers

nothing calls this directly

Calls 1

ssl_cmd_check_fileFunction · 0.85

Tested by

no test coverage detected