diff options
author | Kaspar Brand <kbrand@apache.org> | 2014-01-05 08:38:28 +0100 |
---|---|---|
committer | Kaspar Brand <kbrand@apache.org> | 2014-01-05 08:38:28 +0100 |
commit | a84af8f546331ae1592155539daf64779048535d (patch) | |
tree | 76bef3c9a89ae1d0cb23cf439d881bbc61efbb34 /modules/ssl/ssl_private.h | |
parent | Remove per-certificate chain handling code (obsoleted by (diff) | |
download | apache2-a84af8f546331ae1592155539daf64779048535d.tar.xz apache2-a84af8f546331ae1592155539daf64779048535d.zip |
More finishing touches for SSLOpenSSLConfCmd:
- add documentation
- clear the error queue before executing the next SSL_CONF_cmd
- if needed, configure OCSP stapling after a "Certificate" command
- ifdef ssl_cmd_SSLOpenSSLConfCmd in ssl_private.h
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1555464 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | modules/ssl/ssl_private.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/ssl/ssl_private.h b/modules/ssl/ssl_private.h index 5f1fb23d2e..87b178a37b 100644 --- a/modules/ssl/ssl_private.h +++ b/modules/ssl/ssl_private.h @@ -733,7 +733,9 @@ const char *ssl_cmd_SSLOCSPResponseMaxAge(cmd_parms *cmd, void *dcfg, const char const char *ssl_cmd_SSLOCSPResponderTimeout(cmd_parms *cmd, void *dcfg, const char *arg); const char *ssl_cmd_SSLOCSPEnable(cmd_parms *cmd, void *dcfg, int flag); +#ifdef HAVE_SSL_CONF_CMD const char *ssl_cmd_SSLOpenSSLConfCmd(cmd_parms *cmd, void *dcfg, const char *arg1, const char *arg2); +#endif #ifdef HAVE_SRP const char *ssl_cmd_SSLSRPVerifierFile(cmd_parms *cmd, void *dcfg, const char *arg); |