summaryrefslogtreecommitdiffstats
path: root/_log/include
diff options
context:
space:
mode:
author/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org </C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org>2005-07-28 21:16:02 +0000
committer/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org </C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org>2005-07-28 21:16:02 +0000
commit5c409aeac66dab51e7c022a2a4c1b70824a80b85 (patch)
treefd597e4dd732fb47eb36a96476de82c82194a342 /_log/include
parent42a449b85917e5be92a17312999e77d82b0f82f3 (diff)
initial version
Diffstat (limited to '_log/include')
-rw-r--r--_log/include/Makefile.am3
-rw-r--r--_log/include/libipulog.h0
-rw-r--r--_log/include/libnfnetlink_log.h46
3 files changed, 49 insertions, 0 deletions
diff --git a/_log/include/Makefile.am b/_log/include/Makefile.am
new file mode 100644
index 0000000..ad15fc9
--- /dev/null
+++ b/_log/include/Makefile.am
@@ -0,0 +1,3 @@
+
+include_HEADERS = include/libnfnetlink_log.h include/libipulog.h
+
diff --git a/_log/include/libipulog.h b/_log/include/libipulog.h
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/_log/include/libipulog.h
diff --git a/_log/include/libnfnetlink_log.h b/_log/include/libnfnetlink_log.h
new file mode 100644
index 0000000..e054597
--- /dev/null
+++ b/_log/include/libnfnetlink_log.h
@@ -0,0 +1,46 @@
+/* libnfnetlink_log.h: Header file for the Netfilter Userspace Log library.
+ *
+ * (C) 2005 by Harald Welte <laforge@gnumonks.org>
+ *
+ * This software may be used and distributed according to the terms
+ * of the GNU General Public License, incorporated herein by reference.
+ */
+
+#ifndef __LIBNFNETLINK_LOG_H
+#define __LIBNFNETLINK_LOG_H
+
+#include <linux/netfilter/nfnetlink.h>
+#include <linux/netfilter/nfnetlink_log.h>
+#include <libnfnetlink.h>
+
+
+struct nfulnl_handle
+{
+ struct nfnl_handle nfnlh;
+};
+
+struct nfulnl_g_handle
+{
+ struct nfulnl_handle *h;
+ u_int16_t id;
+};
+
+struct ctnl_msg_handler {
+ int type;
+ int (*handler)(struct sockaddr_nl *, struct nlmsghdr *, void *arg);
+};
+
+extern int nfulnl_open(struct nfulnl_handle *h);
+extern int nfulnl_close(struct nfulnl_handle *h);
+
+extern int nfulnl_bind_pf(struct nfulnl_handle *h, u_int16_t pf);
+extern int nfulnl_unbind_pf(struct nfulnl_handle *h, u_int16_t pf);
+
+extern int nfulnl_bind_group(struct nfulnl_handle *h,
+ struct nfulnl_g_handle *qh, u_int16_t num);
+extern int nfulnl_unbind_group(struct nfulnl_g_handle *qh);
+
+extern int nfulnl_set_mode(struct nfulnl_g_handle *qh,
+ u_int8_t mode, unsigned int len);
+
+#endif /* __LIBNFNETLINK_LOG_H */