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

Function ssl_cmd_SSLSessionTicketKeyFile

modules/ssl/ssl_engine_config.c:986–1000  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

984
985#ifdef HAVE_TLS_SESSION_TICKETS
986const char *ssl_cmd_SSLSessionTicketKeyFile(cmd_parms *cmd,
987 void *dcfg,
988 const char *arg)
989{
990 SSLSrvConfigRec *sc = mySrvConfig(cmd->server);
991 const char *err;
992
993 if ((err = ssl_cmd_check_file(cmd, &arg))) {
994 return err;
995 }
996
997 sc->server->ticket_key->file_path = arg;
998
999 return NULL;
1000}
1001#endif
1002
1003#define NO_PER_DIR_SSL_CA \

Callers

nothing calls this directly

Calls 1

ssl_cmd_check_fileFunction · 0.85

Tested by

no test coverage detected