diff options
author | Nicolas Lacasse <nlacasse@google.com> | 2021-06-09 13:32:41 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-06-09 13:36:23 -0700 |
commit | 539fe2b61aa847dccc775455d3c67f3ebf986df8 (patch) | |
tree | 7ce9c7fe5b53913af8e7531030317a80fb5e5857 | |
parent | 25f3c7bd2afff208f299877548eec69854eb7d5a (diff) |
Remove unnecessary TODO bug.
The bug id was not adding anything relevant here
PiperOrigin-RevId: 378485983
-rw-r--r-- | test/packetimpact/testbench/layers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/packetimpact/testbench/layers.go b/test/packetimpact/testbench/layers.go index 078f500e4..2644b3248 100644 --- a/test/packetimpact/testbench/layers.go +++ b/test/packetimpact/testbench/layers.go @@ -357,7 +357,7 @@ func (l *IPv4) ToBytes() ([]byte, error) { case *ICMPv4: fields.Protocol = uint8(header.ICMPv4ProtocolNumber) default: - // TODO(b/150301488): Support more protocols as needed. + // We can add support for more protocols as needed. return nil, fmt.Errorf("ipv4 header's next layer is unrecognized: %#v", n) } } |