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

it is not required that temporary keys survive restarts, since they

are generated and destroyed on every restart.

so get rid of SSLModConfigRec.tTmpKeys table and mess that was
managing it.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93881 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Doug MacEachern
2002-03-12 22:34:31 +00:00
parent 1eddc44767
commit 15d581b6fe
3 changed files with 25 additions and 109 deletions

View File

@@ -300,7 +300,6 @@ typedef int ssl_algo_t;
*/
#define SSL_TKP_GEN (0)
#define SSL_TKP_ALLOC (1)
#define SSL_TKP_FREE (2)
#define SSL_TKPIDX_RSA512 (0)
@@ -517,7 +516,6 @@ typedef struct {
apr_lock_t *pMutex;
apr_array_header_t *aRandSeed;
apr_hash_t *tVHostKeys;
apr_hash_t *tTmpKeys;
void *pTmpKeys[SSL_TKPIDX_MAX];
apr_hash_t *tPublicCert;
apr_hash_t *tPrivateKey;