diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-01-17 20:00:00 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-01-17 20:00:00 +0300 |
commit | 16cbf3c076a0aca6d47adaf3f719493674cf2363 (patch) | |
tree | e6530480020f62a2bdbf249988ec3e2a751d3927 /src/nxt_hash.h | |
download | unit-16cbf3c076a0aca6d47adaf3f719493674cf2363.tar.gz unit-16cbf3c076a0aca6d47adaf3f719493674cf2363.tar.bz2 |
Initial version.
Diffstat (limited to 'src/nxt_hash.h')
-rw-r--r-- | src/nxt_hash.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/nxt_hash.h b/src/nxt_hash.h new file mode 100644 index 00000000..01c727d2 --- /dev/null +++ b/src/nxt_hash.h @@ -0,0 +1,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_ */ |