diff --git a/internal/congestion/cubic_sender.go b/internal/congestion/cubic_sender.go index a4b16b9f..758399ce 100644 --- a/internal/congestion/cubic_sender.go +++ b/internal/congestion/cubic_sender.go @@ -21,7 +21,6 @@ const ( type cubicSender struct { hybridSlowStart HybridSlowStart rttStats *RTTStats - stats connectionStats cubic *Cubic pacer *pacer clock Clock @@ -169,8 +168,6 @@ func (c *cubicSender) OnPacketLost( // already sent should be treated as a single loss event, since it's expected. if packetNumber <= c.largestSentAtLastCutback { if c.lastCutbackExitedSlowstart { - c.stats.slowstartPacketsLost++ - c.stats.slowstartBytesLost += lostBytes if c.slowStartLargeReduction { // Reduce congestion window by lost_bytes for every loss. c.congestionWindow = utils.MaxByteCount(c.congestionWindow-lostBytes, c.minSlowStartExitWindow) @@ -180,9 +177,6 @@ func (c *cubicSender) OnPacketLost( return } c.lastCutbackExitedSlowstart = c.InSlowStart() - if c.InSlowStart() { - c.stats.slowstartPacketsLost++ - } // TODO(chromium): Separate out all of slow start into a separate class. if c.slowStartLargeReduction && c.InSlowStart() { diff --git a/internal/congestion/stats.go b/internal/congestion/stats.go deleted file mode 100644 index ed669c14..00000000 --- a/internal/congestion/stats.go +++ /dev/null @@ -1,8 +0,0 @@ -package congestion - -import "github.com/lucas-clemente/quic-go/internal/protocol" - -type connectionStats struct { - slowstartPacketsLost protocol.PacketNumber - slowstartBytesLost protocol.ByteCount -}