aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter_ipv4/ipt_ECN.h
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2011-01-18 07:33:09 +0100
committerJan Engelhardt <jengelh@medozas.de>2011-01-18 07:33:09 +0100
commit0260c1dccc6a1018f8cf2c4778dffb47fc5d1c4c (patch)
tree25d7ac63c53e38444eba069f85cdf8b76b84c410 /include/linux/netfilter_ipv4/ipt_ECN.h
parentnetfilter: xt_connlimit: use hotdrop jump mark (diff)
downloadlinux-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_ipv4/ipt_ECN.h')
-rw-r--r--include/linux/netfilter_ipv4/ipt_ECN.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/netfilter_ipv4/ipt_ECN.h b/include/linux/netfilter_ipv4/ipt_ECN.h
index 7ca45918ab8e..c6e3e01b75e0 100644
--- a/include/linux/netfilter_ipv4/ipt_ECN.h
+++ b/include/linux/netfilter_ipv4/ipt_ECN.h
@@ -19,11 +19,11 @@
#define IPT_ECN_OP_MASK 0xce
struct ipt_ECN_info {
- u_int8_t operation; /* bitset of operations */
- u_int8_t ip_ect; /* ECT codepoint of IPv4 header, pre-shifted */
+ __u8 operation; /* bitset of operations */
+ __u8 ip_ect; /* ECT codepoint of IPv4 header, pre-shifted */
union {
struct {
- u_int8_t ece:1, cwr:1; /* TCP ECT bits */
+ __u8 ece:1, cwr:1; /* TCP ECT bits */
} tcp;
} proto;
};