| 984 | |
| 985 | #ifdef HAVE_TLS_SESSION_TICKETS |
| 986 | const 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 \ |
nothing calls this directly
no test coverage detected