ignore WindowUpdate frames for already closed streams

fixes #104
This commit is contained in:
Marten Seemann 2016-05-16 13:36:35 +07:00
parent 93c52a3414
commit de871f0a4f
2 changed files with 19 additions and 3 deletions

View file

@ -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() {