diff options
| author | 2000-12-15 22:17:13 +0000 | |
|---|---|---|
| committer | 2000-12-15 22:17:13 +0000 | |
| commit | 7acfcc6ef7097c423221e7146f2548694d46e418 (patch) | |
| tree | ad55175b8677d0db7a2bdb8070582fb27c28ce6d /usr.sbin/httpd/src/modules/ssl/mod_ssl.c | |
| parent | Define BUS_SPACE_BARRIER_{READ,WRITE} as synonmys for BUS_BARRIER_{READ,WRITE} (diff) | |
| download | wireguard-openbsd-7acfcc6ef7097c423221e7146f2548694d46e418.tar.xz wireguard-openbsd-7acfcc6ef7097c423221e7146f2548694d46e418.zip | |
apache 1.3.14 + mod_ssl 2.7.1 merge
Diffstat (limited to 'usr.sbin/httpd/src/modules/ssl/mod_ssl.c')
| -rw-r--r-- | usr.sbin/httpd/src/modules/ssl/mod_ssl.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.sbin/httpd/src/modules/ssl/mod_ssl.c b/usr.sbin/httpd/src/modules/ssl/mod_ssl.c index 978bc389032..71cfe96cad3 100644 --- a/usr.sbin/httpd/src/modules/ssl/mod_ssl.c +++ b/usr.sbin/httpd/src/modules/ssl/mod_ssl.c @@ -74,7 +74,7 @@ * identify the module to SCCS `what' and RCS `ident' commands */ static char const sccsid[] = "@(#) mod_ssl/" MOD_SSL_VERSION " >"; -static char const rcsid[] = "$Id: mod_ssl.c,v 1.5 2000/06/30 05:35:10 beck Exp $"; +static char const rcsid[] = "$Id: mod_ssl.c,v 1.6 2000/12/15 22:18:17 beck Exp $"; /* * the table of configuration directives we provide @@ -92,6 +92,11 @@ static command_rec ssl_config_cmds[] = { AP_SRV_CMD(SessionCache, TAKE1, "SSL Session Cache storage " "(`none', `dbm:/path/to/file')") +#ifdef SSL_EXPERIMENTAL_ENGINE + AP_SRV_CMD(CryptoDevice, TAKE1, + "SSL external Crypto Device usage " + "(`builtin', `...')") +#endif AP_SRV_CMD(RandomSeed, TAKE23, "SSL Pseudo Random Number Generator (PRNG) seeding source " "(`startup|connect builtin|file:/path|exec:/path [bytes]')") |
