summaryrefslogtreecommitdiffstats
path: root/include/netlink.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/netlink.h')
-rw-r--r--include/netlink.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/netlink.h b/include/netlink.h
new file mode 100644
index 0000000..543eeda
--- /dev/null
+++ b/include/netlink.h
@@ -0,0 +1,21 @@
+#ifndef _NETLINK_H_
+#define _NETLINK_H_
+
+struct nf_conntrack;
+struct nfct_handle;
+
+int ignore_conntrack(struct nf_conntrack *ct);
+
+int nl_init_event_handler(void);
+
+int nl_init_dump_handler(void);
+
+void nl_resize_socket_buffer(struct nfct_handle *h);
+
+int nl_dump_conntrack_table(void);
+
+int nl_create_conntrack(struct nf_conntrack *ct);
+
+int nl_destroy_conntrack(struct nf_conntrack *ct);
+
+#endif