From c329d8f86d85db1b2aae9eeb594c4693a3120448 Mon Sep 17 00:00:00 2001 From: "/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org" Date: Sat, 30 Jul 2005 16:44:31 +0000 Subject: move files to their own directories --- include/libnfnetlink_log/libnfnetlink_log.h | 48 +++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 include/libnfnetlink_log/libnfnetlink_log.h (limited to 'include/libnfnetlink_log/libnfnetlink_log.h') diff --git a/include/libnfnetlink_log/libnfnetlink_log.h b/include/libnfnetlink_log/libnfnetlink_log.h new file mode 100644 index 0000000..d020d3b --- /dev/null +++ b/include/libnfnetlink_log/libnfnetlink_log.h @@ -0,0 +1,48 @@ +/* libnfnetlink_log.h: Header file for the Netfilter Userspace Log library. + * + * (C) 2005 by Harald Welte + * + * 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 +#include +#include + + +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); +extern int nfulnl_set_timeout(struct nfulnl_g_handle *gh, u_int32_t timeout); +extern int nfulnl_set_qthresh(struct nfulnl_g_handle *gh, u_int32_t qthresh); +extern int nfulnl_set_nlbufsiz(struct nfulnl_g_handle *gh, u_int32_t nlbufsiz); +#endif /* __LIBNFNETLINK_LOG_H */ -- cgit v1.2.3