mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
rename the scheduleSending callback to onHasStreamData in the stream
This callback also takes the stream ID, which will later be used to create a queue of streams that have data for writing available.
This commit is contained in:
parent
bd60e996dc
commit
a5d3eaea61
8 changed files with 45 additions and 41 deletions
|
@ -4,6 +4,7 @@ import (
|
|||
"bytes"
|
||||
"math"
|
||||
|
||||
"github.com/golang/mock/gomock"
|
||||
"github.com/lucas-clemente/quic-go/ackhandler"
|
||||
"github.com/lucas-clemente/quic-go/internal/flowcontrol"
|
||||
"github.com/lucas-clemente/quic-go/internal/handshake"
|
||||
|
@ -62,7 +63,7 @@ var _ = Describe("Packet packer", func() {
|
|||
BeforeEach(func() {
|
||||
version := versionGQUICFrames
|
||||
mockSender := NewMockStreamSender(mockCtrl)
|
||||
mockSender.EXPECT().scheduleSending().AnyTimes()
|
||||
mockSender.EXPECT().onHasStreamData(gomock.Any()).AnyTimes()
|
||||
cryptoStream = newCryptoStream(mockSender, flowcontrol.NewStreamFlowController(version.CryptoStreamID(), false, flowcontrol.NewConnectionFlowController(1000, 1000, nil), 1000, 1000, 1000, nil), version)
|
||||
streamsMap := newStreamsMap(nil, protocol.PerspectiveServer, versionGQUICFrames)
|
||||
streamFramer = newStreamFramer(cryptoStream, streamsMap, versionGQUICFrames)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue