diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-08-21 22:40:05 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-08-21 22:40:05 +0000 |
commit | 0a7fc51325ae9decfa6fb0f4beabc4c5deeac3ab (patch) | |
tree | 44fb28b37012a3094e2ce3b8260448ca670f8932 /pkg/tcpip/header/ipv6.go | |
parent | 590414e1b202117b615511d660ebf9f3451bf61d (diff) | |
parent | 573e6e4bba9f43382c846c38c28507435b3baef1 (diff) |
Merge 573e6e4b (automated)
Diffstat (limited to 'pkg/tcpip/header/ipv6.go')
-rw-r--r-- | pkg/tcpip/header/ipv6.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pkg/tcpip/header/ipv6.go b/pkg/tcpip/header/ipv6.go index 95fe8bfc3..31be42ce0 100644 --- a/pkg/tcpip/header/ipv6.go +++ b/pkg/tcpip/header/ipv6.go @@ -82,6 +82,15 @@ const ( IPv6Any tcpip.Address = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" ) +// IPv6EmptySubnet is the empty IPv6 subnet. +var IPv6EmptySubnet = func() tcpip.Subnet { + subnet, err := tcpip.NewSubnet(IPv6Any, tcpip.AddressMask(IPv6Any)) + if err != nil { + panic(err) + } + return subnet +}() + // PayloadLength returns the value of the "payload length" field of the ipv6 // header. func (b IPv6) PayloadLength() uint16 { |