]> git.ipfire.org Git - thirdparty/iptables.git/commitdiff
Resync ip6t_REJECT.h with kernel - seems the entire time we had an imcompatible
authorPatrick McHardy <kaber@trash.net>
Thu, 23 Aug 2007 16:39:36 +0000 (16:39 +0000)
committerPatrick McHardy <kaber@trash.net>
Thu, 23 Aug 2007 16:39:36 +0000 (16:39 +0000)
header :(

Noticed by Peter Riley <Peter.Riley@hotpop.com>

include/linux/netfilter_ipv6/ip6t_REJECT.h

index 7266402214a61363013a4bce1c1c4a68a3db72c4..6be6504162bbb05dfcbf641e6073731eb2fae781 100644 (file)
@@ -4,13 +4,15 @@
 enum ip6t_reject_with {
        IP6T_ICMP6_NO_ROUTE,
        IP6T_ICMP6_ADM_PROHIBITED,
+       IP6T_ICMP6_NOT_NEIGHBOUR,
        IP6T_ICMP6_ADDR_UNREACH,
        IP6T_ICMP6_PORT_UNREACH,
+       IP6T_ICMP6_ECHOREPLY,
        IP6T_TCP_RESET
 };
 
 struct ip6t_reject_info {
-       enum ip6t_reject_with with;      /* reject type */
+       u_int32_t       with;   /* reject type */
 };
 
 #endif /*_IP6T_REJECT_H*/