mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
don't report blocked streams as active for sending data
This commit is contained in:
parent
c626137608
commit
5371f804f8
11 changed files with 161 additions and 61 deletions
|
@ -130,7 +130,7 @@ var _ = Describe("Stream", func() {
|
|||
mockSender.EXPECT().onHasStreamData(streamID).Times(2) // once for the Write, once for the Close
|
||||
mockFC.EXPECT().SendWindowSize().Return(protocol.MaxByteCount).AnyTimes()
|
||||
mockFC.EXPECT().AddBytesSent(protocol.ByteCount(6))
|
||||
mockFC.EXPECT().IsNewlyBlocked()
|
||||
mockFC.EXPECT().IsBlocked()
|
||||
err := str.CancelRead(1234)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
writeReturned := make(chan struct{})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue