Remove unnecessary TODO bug.

The bug id was not adding anything relevant here

PiperOrigin-RevId: 378485983
This commit is contained in:
Nicolas Lacasse 2021-06-09 13:32:41 -07:00 committed by gVisor bot
parent 25f3c7bd2a
commit 539fe2b61a
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}
}