linux/include/net/netfilter/ipv6/nf_defrag_ipv6.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0 */
   2#ifndef _NF_DEFRAG_IPV6_H
   3#define _NF_DEFRAG_IPV6_H
   4
   5#include <linux/skbuff.h>
   6#include <linux/types.h>
   7
   8int nf_defrag_ipv6_enable(struct net *);
   9
  10int nf_ct_frag6_init(void);
  11void nf_ct_frag6_cleanup(void);
  12int nf_ct_frag6_gather(struct net *net, struct sk_buff *skb, u32 user);
  13
  14struct inet_frags_ctl;
  15
  16#endif /* _NF_DEFRAG_IPV6_H */
  17