nf_internals.h 666 B

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