Blame view

net/netfilter/nf_internals.h 456 Bytes
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  /* SPDX-License-Identifier: GPL-2.0 */
f6ebe77f9   Harald Welte   [NETFILTER]: spli...
2
3
  #ifndef _NF_INTERNALS_H
  #define _NF_INTERNALS_H
f6ebe77f9   Harald Welte   [NETFILTER]: spli...
4
5
6
  #include <linux/list.h>
  #include <linux/skbuff.h>
  #include <linux/netdevice.h>
f6ebe77f9   Harald Welte   [NETFILTER]: spli...
7
  /* nf_queue.c */
e3b37f11e   Aaron Conole   netfilter: replac...
8
  int nf_queue(struct sk_buff *skb, struct nf_hook_state *state,
960632ece   Aaron Conole   netfilter: conver...
9
10
  	     const struct nf_hook_entries *entries, unsigned int index,
  	     unsigned int verdict);
039b40ee5   Florian Westphal   netfilter: nf_que...
11
  unsigned int nf_queue_nf_hook_drop(struct net *net);
f6ebe77f9   Harald Welte   [NETFILTER]: spli...
12
13
  
  /* nf_log.c */
c1b1203d6   Joe Perches   net: misc: Remove...
14
  int __init netfilter_log_init(void);
f6ebe77f9   Harald Welte   [NETFILTER]: spli...
15
16
  
  #endif