diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-07-23 20:28:10 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-07-23 20:28:10 +0000 |
commit | f9bfad6ab765dc4de1be6ed04048f8c6374a2a97 (patch) | |
tree | 9656eee8a90d1a5c1bcdd30dab1c2cb8d5640ab5 /pkg/tcpip/header/icmpv6.go | |
parent | 0db3b8663c5e94284254ce60244197313f1e4fc2 (diff) | |
parent | fc26b3764ecfe4f5a5eb7826a9fb46626738b391 (diff) |
Merge release-20200622.1-198-gfc26b3764 (automated)
Diffstat (limited to 'pkg/tcpip/header/icmpv6.go')
-rw-r--r-- | pkg/tcpip/header/icmpv6.go | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/pkg/tcpip/header/icmpv6.go b/pkg/tcpip/header/icmpv6.go index c7ee2de57..a13b4b809 100644 --- a/pkg/tcpip/header/icmpv6.go +++ b/pkg/tcpip/header/icmpv6.go @@ -110,9 +110,16 @@ const ( ICMPv6RedirectMsg ICMPv6Type = 137 ) -// Values for ICMP code as defined in RFC 4443. +// Values for ICMP destination unreachable code as defined in RFC 4443 section +// 3.1. const ( - ICMPv6PortUnreachable = 4 + ICMPv6NetworkUnreachable = 0 + ICMPv6Prohibited = 1 + ICMPv6BeyondScope = 2 + ICMPv6AddressUnreachable = 3 + ICMPv6PortUnreachable = 4 + ICMPv6Policy = 5 + ICMPv6RejectRoute = 6 ) // Type is the ICMP type field. |