From 8b2b91eee0868870cdf650d9204d32d7f3d6b79f Mon Sep 17 00:00:00 2001 From: "George V. Neville-Neil" Date: Mon, 6 Jun 2016 00:35:45 +0000 Subject: [PATCH] Add missing constants from RFCs 4443 and 6550 --- sys/netinet/icmp6.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/netinet/icmp6.h b/sys/netinet/icmp6.h index 979c8fd65929..af35c847c987 100644 --- a/sys/netinet/icmp6.h +++ b/sys/netinet/icmp6.h @@ -144,6 +144,9 @@ struct icmp6_hdr { #define ICMP6_DST_UNREACH_BEYONDSCOPE 2 /* beyond scope of source address */ #define ICMP6_DST_UNREACH_ADDR 3 /* address unreachable */ #define ICMP6_DST_UNREACH_NOPORT 4 /* port unreachable */ +#define ICMP6_DST_UNREACH_POLICY 5 /* failed ingress/egress policy */ +#define ICMP6_DST_UNREACH_REJECT 6 /* Reject route to destination */ +#define ICMP6_DST_UNREACH_SRCROUTE 7 /* Error in source routing header */ #define ICMP6_TIME_EXCEED_TRANSIT 0 /* ttl==0 in transit */ #define ICMP6_TIME_EXCEED_REASSEMBLY 1 /* ttl==0 in reass */