/include/linux/netfilter/xt_TPROXY.h
C++ Header | 14 lines | 9 code | 2 blank | 3 comment | 0 complexity | b06eb473c4a7be02ec26e9bd714c70be MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, AGPL-1.0
1#ifndef _XT_TPROXY_H_target 2#define _XT_TPROXY_H_target 3 4/* TPROXY target is capable of marking the packet to perform 5 * redirection. We can get rid of that whenever we get support for 6 * mutliple targets in the same rule. */ 7struct xt_tproxy_target_info { 8 u_int32_t mark_mask; 9 u_int32_t mark_value; 10 __be32 laddr; 11 __be16 lport; 12}; 13 14#endif /* _XT_TPROXY_H_target */