mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
parent
93c52a3414
commit
de871f0a4f
2 changed files with 19 additions and 3 deletions
|
@ -300,6 +300,15 @@ var _ = Describe("Session", func() {
|
|||
})
|
||||
Expect(err).To(MatchError(errWindowUpdateOnInvalidStream))
|
||||
})
|
||||
|
||||
It("errors when receiving a WindowUpdateFrame for a closed stream", func() {
|
||||
session.streams[5] = nil // this is what the garbageCollectStreams() does when a Stream is closed
|
||||
err := session.handleWindowUpdateFrame(&frames.WindowUpdateFrame{
|
||||
StreamID: 5,
|
||||
ByteOffset: 1337,
|
||||
})
|
||||
Expect(err).To(MatchError(errWindowUpdateOnClosedStream))
|
||||
})
|
||||
})
|
||||
|
||||
Context("closing", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue