Next step in tidying up the LHASH code.
authorGeoff Thorpe <geoff@openssl.org>
Fri, 8 Dec 2000 20:02:01 +0000 (20:02 +0000)
committerGeoff Thorpe <geoff@openssl.org>
Fri, 8 Dec 2000 20:02:01 +0000 (20:02 +0000)
commitd0fa136ce22bb57638a1bf18e656602f53081ff3
treeb28c81ccdfe238a0e655b3ab906095a7589c133b
parent15156cce0eed843d74ca06392144cad29c306ff7
Next step in tidying up the LHASH code.

DECLARE/IMPLEMENT macros now exist to create type (and prototype) safe
wrapper functions that avoid the use of function pointer casting yet retain
type-safety for type-specific callbacks. However, most of the usage within
OpenSSL itself doesn't really require the extra function because the hash
and compare callbacks are internal functions declared only for use by the
hash table. So this change catches all those cases and reimplements the
functions using the base-level LHASH prototypes and does per-variable
casting inside those functions to convert to the appropriate item type.

The exception so far is in ssl_lib.c where the hash and compare callbacks
are not static - they're exposed in ssl.h so their prototypes should not be
changed. In this last case, the IMPLEMENT_LHASH_*** macros have been left
intact.
apps/openssl.c
crypto/conf/conf_api.c
crypto/err/err.c
crypto/mem_dbg.c
crypto/objects/o_names.c
crypto/objects/obj_dat.c
ssl/ssl_lib.c