]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - net/netfilter/nf_internals.h
Merge tag 'nfsd-4.13' of git://linux-nfs.org/~bfields/linux
[karo-tx-linux.git] / net / netfilter / nf_internals.h
1 #ifndef _NF_INTERNALS_H
2 #define _NF_INTERNALS_H
3
4 #include <linux/list.h>
5 #include <linux/skbuff.h>
6 #include <linux/netdevice.h>
7
8 #ifdef CONFIG_NETFILTER_DEBUG
9 #define NFDEBUG(format, args...)  printk(KERN_DEBUG format , ## args)
10 #else
11 #define NFDEBUG(format, args...)
12 #endif
13
14 /* nf_queue.c */
15 int nf_queue(struct sk_buff *skb, struct nf_hook_state *state,
16              struct nf_hook_entry **entryp, unsigned int verdict);
17 unsigned int nf_queue_nf_hook_drop(struct net *net);
18 int __init netfilter_queue_init(void);
19
20 /* nf_log.c */
21 int __init netfilter_log_init(void);
22
23 #endif