summaryrefslogtreecommitdiffstats
path: root/src/libutil
diff options
context:
space:
mode:
Diffstat (limited to 'src/libutil')
-rw-r--r--src/libutil/hash.c17
-rw-r--r--src/libutil/hash.h12
2 files changed, 29 insertions, 0 deletions
diff --git a/src/libutil/hash.c b/src/libutil/hash.c
index b42dc6c51..d4fdfea46 100644
--- a/src/libutil/hash.c
+++ b/src/libutil/hash.c
@@ -697,4 +697,21 @@ rspamd_lru_hash_foreach (rspamd_lru_hash_t *h, int it, gpointer *k,
}
return i;
+}
+
+
+guint
+rspamd_lru_hash_size (rspamd_lru_hash_t *hash)
+{
+ return kh_size (hash);
+}
+
+/**
+ * Returns hash capacity
+ * @param hash hash object
+ */
+guint
+rspamd_lru_hash_capacity (rspamd_lru_hash_t *hash)
+{
+ return hash->n_buckets;
} \ No newline at end of file
diff --git a/src/libutil/hash.h b/src/libutil/hash.h
index f983a0be8..bae3cacfa 100644
--- a/src/libutil/hash.h
+++ b/src/libutil/hash.h
@@ -89,4 +89,16 @@ void rspamd_lru_hash_destroy (rspamd_lru_hash_t *hash);
*/
int rspamd_lru_hash_foreach (rspamd_lru_hash_t *hash, int it, gpointer *k,
gpointer *v);
+
+/**
+ * Returns number of elements in a hash
+ * @param hash hash object
+ */
+guint rspamd_lru_hash_size (rspamd_lru_hash_t *hash);
+
+/**
+ * Returns hash capacity
+ * @param hash hash object
+ */
+guint rspamd_lru_hash_capacity (rspamd_lru_hash_t *hash);
#endif