Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / linux / netfilter / xt_connlimit.h
blob7e3284bcbd2bd118470cbd5b9fc9ec955ad9ccea
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 v4_mask;
12 __be32 v6_mask[4];
14 #endif
16 unsigned int limit, inverse;
18 /* Used internally by the kernel */
19 struct xt_connlimit_data *data __attribute__((aligned(8)));
22 #endif /* _XT_CONNLIMIT_H */