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
|
#include <core.h>
#include <ht.h>
#include <cr.h>
#include "hashtable.h"
void *ecp_ht_create(ECPContext *ctx) {
return create_hashtable(1000, (unsigned int (*)(void *))ecp_cr_dh_pub_hash_fn, (int (*)(void *, void *))ecp_cr_dh_pub_hash_eq, NULL, NULL, NULL);
}
void ecp_ht_destroy(void *h) {
hashtable_destroy(h);
}
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);
}
|