From 805cdfd5b1436fb7fb6814c5a9854f7cc3f3e741 Mon Sep 17 00:00:00 2001 From: Ken Schneider Date: Tue, 4 Feb 2025 20:10:47 -0500 Subject: [PATCH] remove outdated comment --- pkg/networkpath/traceroute/icmp/udp_parser.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/networkpath/traceroute/icmp/udp_parser.go b/pkg/networkpath/traceroute/icmp/udp_parser.go index ed342bb5723c4e..9d410077ee7ddc 100644 --- a/pkg/networkpath/traceroute/icmp/udp_parser.go +++ b/pkg/networkpath/traceroute/icmp/udp_parser.go @@ -41,7 +41,6 @@ func NewICMPUDPParser() Parser { icmpParser := &UDPParser{} icmpParser.packetParser = gopacket.NewDecodingLayerParser(layers.LayerTypeICMPv4, &icmpParser.icmpLayer) icmpParser.innerPacketParser = gopacket.NewDecodingLayerParser(layers.LayerTypeIPv4, &icmpParser.innerIPLayer, &icmpParser.innerUDPLayer) - // TODO: can we ignore unsupported layers? icmpParser.packetParser.IgnoreUnsupported = true icmpParser.innerPacketParser.IgnoreUnsupported = true return icmpParser