mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
parent
8e7215aaeb
commit
71dcad29b5
2 changed files with 14 additions and 1 deletions
|
@ -125,7 +125,7 @@ func (f *streamFramer) maybePopNormalFrames(maxBytes protocol.ByteCount) (res []
|
|||
return true, nil
|
||||
}
|
||||
|
||||
f.streamsMap.Iterate(fn)
|
||||
f.streamsMap.RoundRobinIterate(fn)
|
||||
|
||||
return
|
||||
}
|
||||
|
|
|
@ -117,6 +117,19 @@ var _ = Describe("Stream Framer", func() {
|
|||
Expect(fs[0].FinBit).To(BeFalse())
|
||||
})
|
||||
|
||||
It("uses the round-robin scheduling", func() {
|
||||
stream1.dataForWriting = bytes.Repeat([]byte("f"), 100)
|
||||
stream2.dataForWriting = bytes.Repeat([]byte("e"), 100)
|
||||
fs := framer.PopStreamFrames(10)
|
||||
Expect(fs).To(HaveLen(1))
|
||||
// it doesn't matter here if this data is from stream1 or from stream2...
|
||||
firstStreamID := fs[0].StreamID
|
||||
fs = framer.PopStreamFrames(10)
|
||||
Expect(fs).To(HaveLen(1))
|
||||
// ... but the data popped this time has to be from the other stream
|
||||
Expect(fs[0].StreamID).ToNot(Equal(firstStreamID))
|
||||
})
|
||||
|
||||
Context("splitting of frames", func() {
|
||||
It("splits off nothing", func() {
|
||||
f := &frames.StreamFrame{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue