mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
return an error when calling OpenStream after the session was closed
fixes #615
This commit is contained in:
parent
222ffa2f48
commit
ba16a80864
2 changed files with 10 additions and 0 deletions
|
@ -181,6 +181,13 @@ var _ = Describe("Streams Map", func() {
|
|||
Expect(err).To(MatchError(testErr))
|
||||
})
|
||||
|
||||
It("returns the error when the streamsMap was closed", func() {
|
||||
testErr := errors.New("test error")
|
||||
m.CloseWithError(testErr)
|
||||
_, err := m.OpenStream()
|
||||
Expect(err).To(MatchError(testErr))
|
||||
})
|
||||
|
||||
Context("counting streams", func() {
|
||||
var maxNumStreams int
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue