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

Function ssl_cmd_SSLProxyCARevocationPath

modules/ssl/ssl_engine_config.c:1646–1660  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1644}
1645
1646const char *ssl_cmd_SSLProxyCARevocationPath(cmd_parms *cmd,
1647 void *dcfg,
1648 const char *arg)
1649{
1650 SSLDirConfigRec *dc = (SSLDirConfigRec *)dcfg;
1651 const char *err;
1652
1653 if ((err = ssl_cmd_check_dir(cmd, &arg))) {
1654 return err;
1655 }
1656
1657 dc->proxy->crl_path = arg;
1658
1659 return NULL;
1660}
1661
1662const char *ssl_cmd_SSLProxyCARevocationFile(cmd_parms *cmd,
1663 void *dcfg,

Callers

nothing calls this directly

Calls 1

ssl_cmd_check_dirFunction · 0.85

Tested by

no test coverage detected