summaryrefslogtreecommitdiffstats
path: root/include/libnfnetlink_log/libnfnetlink_log.h
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-10-09 15:41:45 +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-10-09 15:41:45 +0000
commita1199ad1b5be8edf8537ca8b920bccf173c0421c (patch)
tree3f0c79e2b3c4108c2f064b3d8e81fb736bcc1f14 /include/libnfnetlink_log/libnfnetlink_log.h
parentb996215fa53a4a5bdbd60e1d5763bebb1c98bfeb (diff)
rename libnfnetlink_log into libnetfilter_log
Diffstat (limited to 'include/libnfnetlink_log/libnfnetlink_log.h')
-rw-r--r--include/libnfnetlink_log/libnfnetlink_log.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/include/libnfnetlink_log/libnfnetlink_log.h b/include/libnfnetlink_log/libnfnetlink_log.h
deleted file mode 100644
index 707bba8..0000000
--- a/include/libnfnetlink_log/libnfnetlink_log.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/* 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 <libnfnetlink/libnfnetlink.h>
-#include <linux/netfilter/nfnetlink_log.h>
-
-struct nfulnl_handle;
-struct nfulnl_g_handle;
-
-extern int nfulnl_errno;
-
-extern struct nfnl_handle *nfulnl_nfnlh(struct nfulnl_handle *h);
-extern int nfulnl_fd(struct nfulnl_handle *h);
-
-typedef int nfulnl_callback(struct nfulnl_g_handle *gh, struct nfgenmsg *nfmsg,
- struct nfattr *nfa[], void *data);
-
-
-extern struct nfulnl_handle *nfulnl_open(void);
-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 struct nfulnl_g_handle *nfulnl_bind_group(struct nfulnl_handle *h,
- u_int16_t num);
-extern int nfulnl_unbind_group(struct nfulnl_g_handle *gh);
-
-extern int nfulnl_set_mode(struct nfulnl_g_handle *gh,
- 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);
-
-extern int nfulnl_callback_register(struct nfulnl_g_handle *gh,
- nfulnl_callback *cb, void *data);
-extern int nfulnl_handle_packet(struct nfulnl_handle *h, char *buf, int len);
-
-#endif /* __LIBNFNETLINK_LOG_H */