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

Function ssl_cmd_SSLCADNRequestFile

modules/ssl/ssl_engine_config.c:1065–1078  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1063}
1064
1065const char *ssl_cmd_SSLCADNRequestFile(cmd_parms *cmd, void *dcfg,
1066 const char *arg)
1067{
1068 SSLSrvConfigRec *sc = mySrvConfig(cmd->server);
1069 const char *err;
1070
1071 if ((err = ssl_cmd_check_file(cmd, &arg))) {
1072 return err;
1073 }
1074
1075 sc->server->pks->ca_name_file = arg;
1076
1077 return NULL;
1078}
1079
1080const char *ssl_cmd_SSLCARevocationPath(cmd_parms *cmd,
1081 void *dcfg,

Callers

nothing calls this directly

Calls 1

ssl_cmd_check_fileFunction · 0.85

Tested by

no test coverage detected