diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-11-07 00:32:32 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-11-07 00:32:32 +0000 |
commit | eeb3249ffeaa84f3de890132927c25d21534b001 (patch) | |
tree | 6582020019b704ce3a90c62bb34127c01fef19a0 /pkg/tcpip/header | |
parent | 54b6fd090abe19627df27b02b469581cb8c895d7 (diff) | |
parent | e63db5e7bbf8decc6f799965f54fcf7aa6673527 (diff) |
Merge release-20190806.1-376-ge63db5e (automated)
Diffstat (limited to 'pkg/tcpip/header')
-rw-r--r-- | pkg/tcpip/header/ipv6.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkg/tcpip/header/ipv6.go b/pkg/tcpip/header/ipv6.go index f1e60911b..0caa51c1e 100644 --- a/pkg/tcpip/header/ipv6.go +++ b/pkg/tcpip/header/ipv6.go @@ -92,7 +92,9 @@ 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. +// IPv6EmptySubnet is the empty IPv6 subnet. It may also be known as the +// catch-all or wildcard subnet. That is, all IPv6 addresses are considered to +// be contained within this subnet. var IPv6EmptySubnet = func() tcpip.Subnet { subnet, err := tcpip.NewSubnet(IPv6Any, tcpip.AddressMask(IPv6Any)) if err != nil { |