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