mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
remove unused member variable in the mtuDiscoverer (#4905)
This commit is contained in:
parent
202dddd51e
commit
5794afbcbf
1 changed files with 0 additions and 2 deletions
|
@ -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
|
inFlight protocol.ByteCount // the size of the probe packet currently in flight. InvalidByteCount if none is in flight
|
||||||
min protocol.ByteCount
|
min protocol.ByteCount
|
||||||
limit protocol.ByteCount
|
|
||||||
|
|
||||||
// on initialization, we treat the maximum size as the first "lost" packet
|
// on initialization, we treat the maximum size as the first "lost" packet
|
||||||
lost [maxLostMTUProbes]protocol.ByteCount
|
lost [maxLostMTUProbes]protocol.ByteCount
|
||||||
|
@ -114,7 +113,6 @@ func newMTUDiscoverer(
|
||||||
f := &mtuFinder{
|
f := &mtuFinder{
|
||||||
inFlight: protocol.InvalidByteCount,
|
inFlight: protocol.InvalidByteCount,
|
||||||
min: start,
|
min: start,
|
||||||
limit: max,
|
|
||||||
rttStats: rttStats,
|
rttStats: rttStats,
|
||||||
mtuIncreased: mtuIncreased,
|
mtuIncreased: mtuIncreased,
|
||||||
tracer: tracer,
|
tracer: tracer,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue