summaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter/xt_u32.h
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2010-12-03 20:15:35 +0100
committerJan Engelhardt <jengelh@medozas.de>2010-12-03 21:35:14 +0100
commitb4af04be14560b3fcc6cf23200148d408014a2f5 (patch)
tree5f67c1366518446e223313d0e341013bb6e56a53 /include/linux/netfilter/xt_u32.h
parent2d68ae7ce6e40e3977ee11a57296cf76801ae320 (diff)
include: update files with headers from Linux 2.6.37-rc1
Also includes the type change to __u{8,16,32} kernel types already.
Diffstat (limited to 'include/linux/netfilter/xt_u32.h')
-rw-r--r--include/linux/netfilter/xt_u32.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/linux/netfilter/xt_u32.h b/include/linux/netfilter/xt_u32.h
index 9947f56c..e8c3d872 100644
--- a/include/linux/netfilter/xt_u32.h
+++ b/include/linux/netfilter/xt_u32.h
@@ -9,13 +9,13 @@ enum xt_u32_ops {
};
struct xt_u32_location_element {
- u_int32_t number;
- u_int8_t nextop;
+ __u32 number;
+ __u8 nextop;
};
struct xt_u32_value_element {
- u_int32_t min;
- u_int32_t max;
+ __u32 min;
+ __u32 max;
};
/*
@@ -27,14 +27,14 @@ struct xt_u32_value_element {
struct xt_u32_test {
struct xt_u32_location_element location[XT_U32_MAXSIZE+1];
struct xt_u32_value_element value[XT_U32_MAXSIZE+1];
- u_int8_t nnums;
- u_int8_t nvalues;
+ __u8 nnums;
+ __u8 nvalues;
};
struct xt_u32 {
struct xt_u32_test tests[XT_U32_MAXSIZE+1];
- u_int8_t ntests;
- u_int8_t invert;
+ __u8 ntests;
+ __u8 invert;
};
#endif /* _XT_U32_H */