On Thu, Feb 28, 2002 at 12:01:57AM -0000, [EMAIL PROTECTED] wrote: >... > +++ mod_ssl.h 28 Feb 2002 00:01:57 -0000 1.60 > @@ -516,7 +516,7 @@ > apr_lock_t *pMutex; > apr_array_header_t *aRandSeed; > int nScoreboardSize; /* used for builtin random seed */ > - ssl_ds_table *tTmpKeys; > + apr_hash_t *tTmpKeys; > void *pTmpKeys[SSL_TKPIDX_MAX]; > ssl_ds_table *tPublicCert; > ssl_ds_table *tPrivateKey; > @@ -740,6 +740,13 @@ > void *ssl_ds_table_get(ssl_ds_table *, char *); > void ssl_ds_table_wipeout(ssl_ds_table *); > void ssl_ds_table_kill(ssl_ds_table *); > + > +unsigned char *ssl_asn1_table_set(apr_hash_t *table, > + const void *key, > + long int length); > + > +void ssl_asn1_table_unset(apr_hash_t *table, > + const void *key);
Those keys are strings, so the signature should be "const char *". That type is compatible with the hash table key type. Cheers, -g -- Greg Stein, http://www.lyra.org/
