xref: /openbmc/linux/net/netfilter/nf_internals.h (revision d8bcaabe)
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 /* nf_queue.c */
9 int nf_queue(struct sk_buff *skb, struct nf_hook_state *state,
10 	     const struct nf_hook_entries *entries, unsigned int index,
11 	     unsigned int verdict);
12 unsigned int nf_queue_nf_hook_drop(struct net *net);
13 
14 /* nf_log.c */
15 int __init netfilter_log_init(void);
16 
17 #endif
18