diff options
author | 2011-01-18 07:33:09 +0100 | |
---|---|---|
committer | 2011-01-18 07:33:09 +0100 | |
commit | 0260c1dccc6a1018f8cf2c4778dffb47fc5d1c4c (patch) | |
tree | 25d7ac63c53e38444eba069f85cdf8b76b84c410 /include/linux/netfilter_bridge/ebt_limit.h | |
parent | netfilter: xt_connlimit: use hotdrop jump mark (diff) | |
download | linux-dev-0260c1dccc6a1018f8cf2c4778dffb47fc5d1c4c.tar.xz linux-dev-0260c1dccc6a1018f8cf2c4778dffb47fc5d1c4c.zip |
netfilter: xtables: use __uXX guarded types for userspace exports
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'include/linux/netfilter_bridge/ebt_limit.h')
-rw-r--r-- | include/linux/netfilter_bridge/ebt_limit.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/netfilter_bridge/ebt_limit.h b/include/linux/netfilter_bridge/ebt_limit.h index 4bf76b751676..721d51ffa513 100644 --- a/include/linux/netfilter_bridge/ebt_limit.h +++ b/include/linux/netfilter_bridge/ebt_limit.h @@ -10,13 +10,13 @@ seconds, or one every 59 hours. */ struct ebt_limit_info { - u_int32_t avg; /* Average secs between packets * scale */ - u_int32_t burst; /* Period multiplier for upper limit. */ + __u32 avg; /* Average secs between packets * scale */ + __u32 burst; /* Period multiplier for upper limit. */ /* Used internally by the kernel */ unsigned long prev; - u_int32_t credit; - u_int32_t credit_cap, cost; + __u32 credit; + __u32 credit_cap, cost; }; #endif |