diff options
author | Uros Majstorovic <majstor@majstor.org> | 2018-01-11 21:28:22 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2018-01-11 21:28:22 +0100 |
commit | 0d0e9facfcea3cf96da3b63285865182fdd5477e (patch) | |
tree | cca42e7aab184cad981c794073a4376aa2616193 /code/core/htable/htable.c | |
parent | 05e11f491b84a110b9ca08612df370b91e9bdcbc (diff) |
refatoring dirs
Diffstat (limited to 'code/core/htable/htable.c')
-rw-r--r-- | code/core/htable/htable.c | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/code/core/htable/htable.c b/code/core/htable/htable.c deleted file mode 100644 index 6330ef8..0000000 --- a/code/core/htable/htable.c +++ /dev/null @@ -1,39 +0,0 @@ -#include <core.h> - -#include <string.h> - -#include "hashtable.h" - -static void *h_create(ECPContext *ctx) { - return create_hashtable(1000, (unsigned int (*)(void *))ctx->cr.dh_pub_hash_fn, (int (*)(void *, void *))ctx->cr.dh_pub_hash_eq, NULL, NULL, NULL); -} - -static void h_destroy(void *h) { - hashtable_destroy(h); -} - -static int h_insert(void *h, unsigned char *k, ECPConnection *v) { - int rv = hashtable_insert(h, k, v); - if (!rv) return ECP_ERR; - return ECP_OK; -} - -static ECPConnection *h_remove(void *h, unsigned char *k) { - return hashtable_remove(h, k); -} - -static ECPConnection *h_search(void *h, unsigned char *k) { - return hashtable_search(h, k); -} - -#ifdef ECP_WITH_HTABLE -int ecp_htable_init(ECPHTableIface *h) { - h->init = 1; - h->create = h_create; - h->destroy = h_destroy; - h->insert = h_insert; - h->remove = h_remove; - h->search = h_search; - return ECP_OK; -} -#endif
\ No newline at end of file |