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

Function ssl_cmd_SSLProxyCARevocationFile

modules/ssl/ssl_engine_config.c:1662–1676  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1660}
1661
1662const char *ssl_cmd_SSLProxyCARevocationFile(cmd_parms *cmd,
1663 void *dcfg,
1664 const char *arg)
1665{
1666 SSLDirConfigRec *dc = (SSLDirConfigRec *)dcfg;
1667 const char *err;
1668
1669 if ((err = ssl_cmd_check_file(cmd, &arg))) {
1670 return err;
1671 }
1672
1673 dc->proxy->crl_file = arg;
1674
1675 return NULL;
1676}
1677
1678const char *ssl_cmd_SSLProxyCARevocationCheck(cmd_parms *cmd,
1679 void *dcfg,

Callers

nothing calls this directly

Calls 1

ssl_cmd_check_fileFunction · 0.85

Tested by

no test coverage detected