diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-08-06 08:36:20 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-06 08:36:20 +0000 |
commit | 608ecb8fce5738307ca760058488fc725c06c417 (patch) | |
tree | 04afc0f8726907d8d14faaae5d5d319d0221dccd /pkg/tcpip/header | |
parent | 7a92c8c07651ce7f6e78df9e4e4fef5fdf1d75d5 (diff) | |
parent | fc4dd3ef455975a033714052b12ebebc85e937d5 (diff) |
Merge release-20200804.0-28-gfc4dd3ef4 (automated)
Diffstat (limited to 'pkg/tcpip/header')
-rw-r--r-- | pkg/tcpip/header/ipv4.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/tcpip/header/ipv4.go b/pkg/tcpip/header/ipv4.go index 62ac932bb..d0d1efd0d 100644 --- a/pkg/tcpip/header/ipv4.go +++ b/pkg/tcpip/header/ipv4.go @@ -101,6 +101,11 @@ const ( // IPv4Version is the version of the ipv4 protocol. IPv4Version = 4 + // IPv4AllSystems is the all systems IPv4 multicast address as per + // IANA's IPv4 Multicast Address Space Registry. See + // https://www.iana.org/assignments/multicast-addresses/multicast-addresses.xhtml. + IPv4AllSystems tcpip.Address = "\xe0\x00\x00\x01" + // IPv4Broadcast is the broadcast address of the IPv4 procotol. IPv4Broadcast tcpip.Address = "\xff\xff\xff\xff" |