summaryrefslogtreecommitdiff
path: root/ecp/src/htable/htable.c
blob: 1fa79a346a3690649c706277696b3ee6e5954934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <core.h>
#include <ht.h>
#include <cr.h>

#include "hashtable.h"

void *ecp_ht_create(ECPContext *ctx) {
    printf("NEFORE CREATE\n");
    void *r = hashtable_create(1000, (unsigned int (*)(void *))ecp_cr_dh_pub_hash_fn, (int (*)(void *, void *))ecp_cr_dh_pub_hash_eq);
    printf("AFTER CREATE\n");
    return r;
}

void ecp_ht_destroy(void *h) {
    hashtable_destroy(h, 0);
}

int ecp_ht_insert(void *h, unsigned char *k, ECPConnection *v) {
    int rv = hashtable_insert(h, k, v);
    if (!rv) return ECP_ERR;
    return ECP_OK;
}

ECPConnection *ecp_ht_remove(void *h, unsigned char *k) {
    return hashtable_remove(h, k);
}

ECPConnection *ecp_ht_search(void *h, unsigned char *k) {
    return hashtable_search(h, k);
}