|
@@ -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 */
|