Pablo Neira Ayuso wrote: > min_ip and max_ip type has been changed from u_int32_t to __be32 that is > not defined in userspace, this breaks iptables compilation. Attached a > patch that recovers the use of u_int32_t. I'm not sure if this is the > best fix so let me know what you think. I think we should just define the endian-annotation types in userspace. Does this patch fix compilation?
Index: include/iptables_common.h =================================================================== --- include/iptables_common.h (Revision 6660) +++ include/iptables_common.h (Arbeitskopie) @@ -42,4 +42,9 @@ extern void init_extensions(void); #endif +#define __be32 u_int32_t +#define __le32 u_int32_t +#define __be16 u_int16_t +#define __le16 u_int16_t + #endif /*_IPTABLES_COMMON_H*/