summaryrefslogtreecommitdiffstats
path: root/include/ignore.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ignore.h')
-rw-r--r--include/ignore.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/ignore.h b/include/ignore.h
index 96deb93..f1c2846 100644
--- a/include/ignore.h
+++ b/include/ignore.h
@@ -1,11 +1,13 @@
#ifndef _IGNORE_H_
#define _IGNORE_H_
+#include <stdint.h>
+
struct ignore_pool {
struct hashtable *h;
};
-struct ignore_pool *ignore_pool_create(u_int8_t family);
+struct ignore_pool *ignore_pool_create(uint8_t family);
void ignore_pool_destroy(struct ignore_pool *ip);
int ignore_pool_add(struct ignore_pool *ip, void *data);
int ignore_pool_test(struct ignore_pool *ip, struct nf_conntrack *ct);