summaryrefslogtreecommitdiffstats
path: root/daemon/include/ignore.h
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/include/ignore.h')
-rw-r--r--daemon/include/ignore.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/daemon/include/ignore.h b/daemon/include/ignore.h
new file mode 100644
index 0000000..40cb02d
--- /dev/null
+++ b/daemon/include/ignore.h
@@ -0,0 +1,12 @@
+#ifndef _IGNORE_H_
+#define _IGNORE_H_
+
+struct ignore_pool {
+ struct hashtable *h;
+};
+
+struct ignore_pool *ignore_pool_create(u_int8_t family);
+void ignore_pool_destroy(struct ignore_pool *ip);
+int ignore_pool_add(struct ignore_pool *ip, void *data);
+
+#endif