1 #ifndef _XT_TEE_TARGET_H 2 #define _XT_TEE_TARGET_H 3 4 #include <linux/netfilter.h> 5 6 struct xt_tee_tginfo { 7 union nf_inet_addr gw; 8 char oif[16]; 9 10 /* used internally by the kernel */ 11 struct xt_tee_priv *priv __attribute__((aligned(8))); 12 }; 13 14 #endif /* _XT_TEE_TARGET_H */ 15