Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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 */
9int 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);
12unsigned int nf_queue_nf_hook_drop(struct net *net);
13
14/* nf_log.c */
15int __init netfilter_log_init(void);
16
17#endif