appletalk: remove the BKL
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / netfilter / xt_TPROXY.h
blob3f3d69361289ca4cecda2182f71d62e0b7137053
1 #ifndef _XT_TPROXY_H
2 #define _XT_TPROXY_H
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. */
7 struct xt_tproxy_target_info {
8 u_int32_t mark_mask;
9 u_int32_t mark_value;
10 __be32 laddr;
11 __be16 lport;
14 struct xt_tproxy_target_info_v1 {
15 u_int32_t mark_mask;
16 u_int32_t mark_value;
17 union nf_inet_addr laddr;
18 __be16 lport;
21 #endif /* _XT_TPROXY_H */