From 5794afbcbf96bcc83352cfd385d529f96fc1a35b Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Tue, 21 Jan 2025 00:29:45 -0800 Subject: [PATCH] remove unused member variable in the mtuDiscoverer (#4905) --- mtu_discoverer.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/mtu_discoverer.go b/mtu_discoverer.go index 3f3a640a..6f906698 100644 --- a/mtu_discoverer.go +++ b/mtu_discoverer.go @@ -94,7 +94,6 @@ type mtuFinder struct { inFlight protocol.ByteCount // the size of the probe packet currently in flight. InvalidByteCount if none is in flight min protocol.ByteCount - limit protocol.ByteCount // on initialization, we treat the maximum size as the first "lost" packet lost [maxLostMTUProbes]protocol.ByteCount @@ -114,7 +113,6 @@ func newMTUDiscoverer( f := &mtuFinder{ inFlight: protocol.InvalidByteCount, min: start, - limit: max, rttStats: rttStats, mtuIncreased: mtuIncreased, tracer: tracer,