mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
open implicitly opened streams in order
This commit is contained in:
parent
824f122a79
commit
777f5f1ded
2 changed files with 16 additions and 15 deletions
|
@ -146,7 +146,7 @@ var _ = Describe("Streams Map", func() {
|
|||
_, err := m.GetOrOpenStream(protocol.StreamID(i*2 + 1))
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
}
|
||||
_, err := m.GetOrOpenStream(protocol.StreamID(2*maxNumStreams + 2))
|
||||
_, err := m.GetOrOpenStream(protocol.StreamID(2*maxNumStreams + 3))
|
||||
Expect(err).To(MatchError(qerr.TooManyOpenStreams))
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue