Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Harald Welte | f6ebe77 | 2005-08-09 20:21:49 -0700 | [diff] [blame] | 2 | #ifndef _NF_INTERNALS_H |
| 3 | #define _NF_INTERNALS_H |
| 4 | |
Harald Welte | f6ebe77 | 2005-08-09 20:21:49 -0700 | [diff] [blame] | 5 | #include <linux/list.h> |
| 6 | #include <linux/skbuff.h> |
| 7 | #include <linux/netdevice.h> |
| 8 | |
Harald Welte | f6ebe77 | 2005-08-09 20:21:49 -0700 | [diff] [blame] | 9 | /* nf_queue.c */ |
Aaron Conole | e3b37f1 | 2016-09-21 11:35:07 -0400 | [diff] [blame] | 10 | int nf_queue(struct sk_buff *skb, struct nf_hook_state *state, |
Aaron Conole | 960632e | 2017-08-24 00:08:32 +0200 | [diff] [blame] | 11 | const struct nf_hook_entries *entries, unsigned int index, |
| 12 | unsigned int verdict); |
Florian Westphal | 26888df | 2017-12-01 00:21:03 +0100 | [diff] [blame] | 13 | void nf_queue_nf_hook_drop(struct net *net); |
Harald Welte | f6ebe77 | 2005-08-09 20:21:49 -0700 | [diff] [blame] | 14 | |
| 15 | /* nf_log.c */ |
Joe Perches | c1b1203 | 2013-10-18 13:48:25 -0700 | [diff] [blame] | 16 | int __init netfilter_log_init(void); |
Harald Welte | f6ebe77 | 2005-08-09 20:21:49 -0700 | [diff] [blame] | 17 | |
| 18 | #endif |