summaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter_ipv6
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2007-08-23 16:39:36 +0000
committerPatrick McHardy <kaber@trash.net>2007-08-23 16:39:36 +0000
commit001ebc22cdea0732f327142b10ff30309b36bbf8 (patch)
treeea242bc99e6beaef674a69fb6ce14f4d0b469073 /include/linux/netfilter_ipv6
parentbe95d14917cefbacf1234c08e582806fccae3dae (diff)
Resync ip6t_REJECT.h with kernel - seems the entire time we had an imcompatible
header :( Noticed by Peter Riley <Peter.Riley@hotpop.com>
Diffstat (limited to 'include/linux/netfilter_ipv6')
-rw-r--r--include/linux/netfilter_ipv6/ip6t_REJECT.h4
1 files changed, 3 insertions, 1 deletions
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*/