mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
Merge pull request #2683 from lucas-clemente/remove-reno-congestion-stats
remove unused connectionStats counters from the Reno implementation
This commit is contained in:
commit
bc8b37cd14
2 changed files with 0 additions and 14 deletions
|
@ -21,7 +21,6 @@ const (
|
||||||
type cubicSender struct {
|
type cubicSender struct {
|
||||||
hybridSlowStart HybridSlowStart
|
hybridSlowStart HybridSlowStart
|
||||||
rttStats *RTTStats
|
rttStats *RTTStats
|
||||||
stats connectionStats
|
|
||||||
cubic *Cubic
|
cubic *Cubic
|
||||||
pacer *pacer
|
pacer *pacer
|
||||||
clock Clock
|
clock Clock
|
||||||
|
@ -169,8 +168,6 @@ func (c *cubicSender) OnPacketLost(
|
||||||
// already sent should be treated as a single loss event, since it's expected.
|
// already sent should be treated as a single loss event, since it's expected.
|
||||||
if packetNumber <= c.largestSentAtLastCutback {
|
if packetNumber <= c.largestSentAtLastCutback {
|
||||||
if c.lastCutbackExitedSlowstart {
|
if c.lastCutbackExitedSlowstart {
|
||||||
c.stats.slowstartPacketsLost++
|
|
||||||
c.stats.slowstartBytesLost += lostBytes
|
|
||||||
if c.slowStartLargeReduction {
|
if c.slowStartLargeReduction {
|
||||||
// Reduce congestion window by lost_bytes for every loss.
|
// Reduce congestion window by lost_bytes for every loss.
|
||||||
c.congestionWindow = utils.MaxByteCount(c.congestionWindow-lostBytes, c.minSlowStartExitWindow)
|
c.congestionWindow = utils.MaxByteCount(c.congestionWindow-lostBytes, c.minSlowStartExitWindow)
|
||||||
|
@ -180,9 +177,6 @@ func (c *cubicSender) OnPacketLost(
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
c.lastCutbackExitedSlowstart = c.InSlowStart()
|
c.lastCutbackExitedSlowstart = c.InSlowStart()
|
||||||
if c.InSlowStart() {
|
|
||||||
c.stats.slowstartPacketsLost++
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO(chromium): Separate out all of slow start into a separate class.
|
// TODO(chromium): Separate out all of slow start into a separate class.
|
||||||
if c.slowStartLargeReduction && c.InSlowStart() {
|
if c.slowStartLargeReduction && c.InSlowStart() {
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
package congestion
|
|
||||||
|
|
||||||
import "github.com/lucas-clemente/quic-go/internal/protocol"
|
|
||||||
|
|
||||||
type connectionStats struct {
|
|
||||||
slowstartPacketsLost protocol.PacketNumber
|
|
||||||
slowstartBytesLost protocol.ByteCount
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue