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:
Marten Seemann 2018-01-03 11:42:12 +07:00
parent 0e3e3a0370
commit b687dd774f
4 changed files with 43 additions and 58 deletions

View file

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