1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Rearrange OpenSSL engine initialization to support RAND

redirection on crypto accelerator.

Submitted by:     Frederic DONNAT <frederic.donnat@zencod.com>
Reviewed by:	  Jeff Trawick


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97482 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jeff Trawick
2002-11-11 13:16:17 +00:00
parent c7abede89f
commit 55149170fb
2 changed files with 11 additions and 7 deletions

View File

@@ -1,5 +1,9 @@
Changes with Apache 2.0.44 Changes with Apache 2.0.44
*) Rearrange OpenSSL engine initialization to support RAND
redirection on crypto accelerator.
[Frederic DONNAT <frederic.donnat@zencod.com>]
*) Always emit Vary header if mod_deflate is involved in the *) Always emit Vary header if mod_deflate is involved in the
request. [Andre Malo <nd@perlig.de>] request. [Andre Malo <nd@perlig.de>]

View File

@@ -266,6 +266,13 @@ int ssl_init_Module(apr_pool_t *p, apr_pool_t *plog,
} }
/*
* SSL external crypto device ("engine") support
*/
#ifdef SSL_EXPERIMENTAL_ENGINE
ssl_init_Engine(base_server, p);
#endif
ssl_init_SSLLibrary(base_server); ssl_init_SSLLibrary(base_server);
#if APR_HAS_THREADS #if APR_HAS_THREADS
@@ -291,13 +298,6 @@ int ssl_init_Module(apr_pool_t *p, apr_pool_t *plog,
return !OK; return !OK;
} }
/*
* SSL external crypto device ("engine") support
*/
#ifdef SSL_EXPERIMENTAL_ENGINE
ssl_init_Engine(base_server, p);
#endif
/* /*
* initialize the mutex handling * initialize the mutex handling
*/ */