blob: 01c727d24367e904023d13c483e6cc78d1fa88e0 (
plain) (
blame)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*
* Copyright (C) Igor Sysoev
* Copyright (C) NGINX, Inc.
*/
#ifndef _NXT_HASH_H_INCLUDED_
#define _NXT_HASH_H_INCLUDED_
typedef struct {
nxt_lvlhsh_t lvlhsh;
const nxt_lvlhsh_proto_t *proto;
void *pool;
} nxt_hash_t;
nxt_inline nxt_int_t
nxt_hash_find(nxt_hash_t *h, nxt_lvlhsh_query_t *lhq)
{
lhq->proto = h->proto;
return nxt_lvlhsh_find(&h->lvlhsh, lhq);
}
nxt_inline nxt_int_t
nxt_hash_insert(nxt_hash_t *h, nxt_lvlhsh_query_t *lhq)
{
lhq->proto = h->proto;
lhq->pool = h->pool;
return nxt_lvlhsh_insert(&h->lvlhsh, lhq);
}
nxt_inline nxt_int_t
nxt_hash_delete(nxt_hash_t *h, nxt_lvlhsh_query_t *lhq)
{
lhq->proto = h->proto;
lhq->pool = h->pool;
return nxt_lvlhsh_delete(&h->lvlhsh, lhq);
}
#endif /* _NXT_HASH_H_INCLUDED_ */
|