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 
8 int nf_defrag_ipv6_enable(struct net *);
9 
10 int nf_ct_frag6_init(void);
11 void nf_ct_frag6_cleanup(void);
12 int nf_ct_frag6_gather(struct net *net, struct sk_buff *skb, u32 user);
13 
14 struct inet_frags_ctl;
15 
16 #endif /* _NF_DEFRAG_IPV6_H */
17