allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / linux / netfilter / xt_connlimit.h
blobb97bf2dcee6537040f8b03e002a8bd4e6e88741c
1 #ifndef _XT_CONNLIMIT_H
2 #define _XT_CONNLIMIT_H
4 struct xt_connlimit_data;
6 struct xt_connlimit_info {
7 union {
8 union nf_inet_addr _mask;
9 #ifndef __KERNEL__
10 union {
11 __be32 mask; /* compat */
12 __be32 v4_mask;
13 __be32 v6_mask[4];
15 #endif
17 unsigned int limit, inverse;
19 /* this needs to be at the end */
20 struct xt_connlimit_data *data __attribute__((aligned(8)));
23 #endif /* _XT_CONNLIMIT_H */