diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-10-21 20:58:49 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-10-21 20:58:49 +0000 |
commit | 87c093062bc55f6f6604d1f58c7aa365debc0605 (patch) | |
tree | 6efecfde0b6b9cd02a9b17f6aba650d41a13a26d /pkg/tcpip/header | |
parent | f76a604701b6726e619652d424db4a78362494e0 (diff) | |
parent | 207221ffb27f2010c46468d827f1817432df3960 (diff) |
Merge release-20211011.0-39-g207221ffb (automated)
Diffstat (limited to 'pkg/tcpip/header')
-rw-r--r-- | pkg/tcpip/header/ipv4.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pkg/tcpip/header/ipv4.go b/pkg/tcpip/header/ipv4.go index dcc549c7b..7baaf0d17 100644 --- a/pkg/tcpip/header/ipv4.go +++ b/pkg/tcpip/header/ipv4.go @@ -208,6 +208,15 @@ var IPv4EmptySubnet = func() tcpip.Subnet { return subnet }() +// IPv4LoopbackSubnet is the loopback subnet for IPv4. +var IPv4LoopbackSubnet = func() tcpip.Subnet { + subnet, err := tcpip.NewSubnet(tcpip.Address("\x7f\x00\x00\x00"), tcpip.AddressMask("\xff\x00\x00\x00")) + if err != nil { + panic(err) + } + return subnet +}() + // IPVersion returns the version of IP used in the given packet. It returns -1 // if the packet is not large enough to contain the version field. func IPVersion(b []byte) int { |