1 #ifndef __NETFILTER_IP6T_NPT
2 #define __NETFILTER_IP6T_NPT
3 
4 #include <linux/types.h>
5 #include <linux/netfilter.h>
6 
7 struct ip6t_npt_tginfo {
8 	union nf_inet_addr	src_pfx;
9 	union nf_inet_addr	dst_pfx;
10 	__u8			src_pfx_len;
11 	__u8			dst_pfx_len;
12 	/* Used internally by the kernel */
13 	__sum16			adjustment;
14 };
15 
16 #endif /* __NETFILTER_IP6T_NPT */
17