mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
remove the Range method in the streamsMap
streamsMap.Range was only used to pass the stream flow control window to all open streams after receiving the peer's transport parameters. It's easier to pass the transport parameters to the streamsMap directly.
This commit is contained in:
parent
0e3e3a0370
commit
b687dd774f
4 changed files with 43 additions and 58 deletions
|
@ -201,7 +201,7 @@ var _ = Describe("Session", func() {
|
|||
|
||||
Context("handling STREAM frames", func() {
|
||||
BeforeEach(func() {
|
||||
sess.streamsMap.UpdateMaxStreamLimit(100)
|
||||
sess.streamsMap.UpdateLimits(&handshake.TransportParameters{MaxStreams: 10000})
|
||||
})
|
||||
|
||||
It("makes new streams", func() {
|
||||
|
@ -494,9 +494,9 @@ var _ = Describe("Session", func() {
|
|||
}()
|
||||
_, err := sess.GetOrOpenStream(5)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
sess.streamsMap.Range(func(s streamI) {
|
||||
for _, s := range sess.streamsMap.streams {
|
||||
s.(*MockStreamI).EXPECT().closeForShutdown(gomock.Any())
|
||||
})
|
||||
}
|
||||
err = sess.handleFrames([]wire.Frame{&wire.ConnectionCloseFrame{ErrorCode: qerr.ProofInvalid, ReasonPhrase: "foobar"}}, protocol.EncryptionUnspecified)
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
Eventually(sess.Context().Done()).Should(BeClosed())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue