From: Patrick McHardy Date: Thu, 23 Aug 2007 16:39:36 +0000 (+0000) Subject: Resync ip6t_REJECT.h with kernel - seems the entire time we had an imcompatible X-Git-Tag: v1.4.0-rc1~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=001ebc22cdea0732f327142b10ff30309b36bbf8;p=thirdparty%2Fiptables.git Resync ip6t_REJECT.h with kernel - seems the entire time we had an imcompatible header :( Noticed by Peter Riley --- diff --git a/include/linux/netfilter_ipv6/ip6t_REJECT.h b/include/linux/netfilter_ipv6/ip6t_REJECT.h index 72664022..6be65041 100644 --- a/include/linux/netfilter_ipv6/ip6t_REJECT.h +++ b/include/linux/netfilter_ipv6/ip6t_REJECT.h @@ -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*/