]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/netfilter/nf_internals.h
Merge tag 'platform-drivers-x86-v4.13-3' of git://git.infradead.org/linux-platform...
[mirror_ubuntu-artful-kernel.git] / net / netfilter / nf_internals.h
CommitLineData
f6ebe77f
HW
1#ifndef _NF_INTERNALS_H
2#define _NF_INTERNALS_H
3
f6ebe77f
HW
4#include <linux/list.h>
5#include <linux/skbuff.h>
6#include <linux/netdevice.h>
7
8#ifdef CONFIG_NETFILTER_DEBUG
654d0fbd 9#define NFDEBUG(format, args...) printk(KERN_DEBUG format , ## args)
f6ebe77f
HW
10#else
11#define NFDEBUG(format, args...)
12#endif
13
f6ebe77f 14/* nf_queue.c */
e3b37f11 15int nf_queue(struct sk_buff *skb, struct nf_hook_state *state,
7034b566 16 struct nf_hook_entry **entryp, unsigned int verdict);
039b40ee 17unsigned int nf_queue_nf_hook_drop(struct net *net);
c1b1203d 18int __init netfilter_queue_init(void);
f6ebe77f
HW
19
20/* nf_log.c */
c1b1203d 21int __init netfilter_log_init(void);
f6ebe77f
HW
22
23#endif