Jan Engelhardt wrote:
Convert ipt_owner to xt_owner, adding support for IPv6. +struct xt_owner_info { + u_int32_t uid; + u_int32_t gid; + u_int8_t match, invert; +};
Unfortunately this also breaks compatiblity, we currently have: struct ipt_owner_info { uid_t uid; gid_t gid; pid_t pid; pid_t sid; char comm[16]; u_int8_t match, invert; /* flags */ }; and struct ip6t_owner_info { uid_t uid; gid_t gid; pid_t pid; pid_t sid; u_int8_t match, invert; /* flags */ }; This is compatible with neither one. - To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html