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

Function ssl_cmd_SSLCertificateChainFile

modules/ssl/ssl_engine_config.c:969–983  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

967}
968
969const char *ssl_cmd_SSLCertificateChainFile(cmd_parms *cmd,
970 void *dcfg,
971 const char *arg)
972{
973 SSLSrvConfigRec *sc = mySrvConfig(cmd->server);
974 const char *err;
975
976 if ((err = ssl_cmd_check_file(cmd, &arg))) {
977 return err;
978 }
979
980 sc->server->cert_chain = arg;
981
982 return NULL;
983}
984
985#ifdef HAVE_TLS_SESSION_TICKETS
986const char *ssl_cmd_SSLSessionTicketKeyFile(cmd_parms *cmd,

Callers

nothing calls this directly

Calls 1

ssl_cmd_check_fileFunction · 0.85

Tested by

no test coverage detected