mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
move the RTTStats to the utils package
The RTTStats are used by the logging package. In order to instrument the congestion package, the RTTStats can't be part of that package any more (to avoid an import loop).
This commit is contained in:
parent
ce16603a24
commit
741dc28d74
29 changed files with 129 additions and 139 deletions
|
@ -5,7 +5,8 @@ import (
|
|||
"strconv"
|
||||
"time"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/internal/congestion"
|
||||
"github.com/lucas-clemente/quic-go/internal/utils"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
|
@ -27,7 +28,7 @@ var _ = Describe("Base Flow controller", func() {
|
|||
|
||||
BeforeEach(func() {
|
||||
controller = &baseFlowController{}
|
||||
controller.rttStats = &congestion.RTTStats{}
|
||||
controller.rttStats = &utils.RTTStats{}
|
||||
})
|
||||
|
||||
Context("send flow control", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue