include/linux/netfilter/xt_connlimit.h
changeset 0 aa628870c1d3
equal deleted inserted replaced
-1:000000000000 0:aa628870c1d3
       
     1 #ifndef _XT_CONNLIMIT_H
       
     2 #define _XT_CONNLIMIT_H
       
     3 
       
     4 struct xt_connlimit_data;
       
     5 
       
     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];
       
    13 		};
       
    14 #endif
       
    15 	};
       
    16 	unsigned int limit, inverse;
       
    17 
       
    18 	/* Used internally by the kernel */
       
    19 	struct xt_connlimit_data *data __attribute__((aligned(8)));
       
    20 };
       
    21 
       
    22 #endif /* _XT_CONNLIMIT_H */