root/net/netfilter/nf_internals.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* SPDX-License-Identifier: GPL-2.0 */
   2 #ifndef _NF_INTERNALS_H
   3 #define _NF_INTERNALS_H
   4 
   5 #include <linux/list.h>
   6 #include <linux/skbuff.h>
   7 #include <linux/netdevice.h>
   8 
   9 /* nf_queue.c */
  10 void nf_queue_nf_hook_drop(struct net *net);
  11 
  12 /* nf_log.c */
  13 int __init netfilter_log_init(void);
  14 
  15 /* core.c */
  16 void nf_hook_entries_delete_raw(struct nf_hook_entries __rcu **pp,
  17                                 const struct nf_hook_ops *reg);
  18 int nf_hook_entries_insert_raw(struct nf_hook_entries __rcu **pp,
  19                                 const struct nf_hook_ops *reg);
  20 #endif

/* [<][>][^][v][top][bottom][index][help] */