Blame view

net/netfilter/nf_internals.h 509 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 */
26888dfd7   Florian Westphal   netfilter: core: ...
8
  void nf_queue_nf_hook_drop(struct net *net);
f6ebe77f9   Harald Welte   [NETFILTER]: spli...
9
10
  
  /* nf_log.c */
c1b1203d6   Joe Perches   net: misc: Remove...
11
  int __init netfilter_log_init(void);
f6ebe77f9   Harald Welte   [NETFILTER]: spli...
12

06cad3acf   Florian Westphal   netfilter: core: ...
13
14
15
16
17
  /* core.c */
  void nf_hook_entries_delete_raw(struct nf_hook_entries __rcu **pp,
  				const struct nf_hook_ops *reg);
  int nf_hook_entries_insert_raw(struct nf_hook_entries __rcu **pp,
  				const struct nf_hook_ops *reg);
f6ebe77f9   Harald Welte   [NETFILTER]: spli...
18
  #endif