mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
allow empty STREAM frames at arbitrary offsets
This commit is contained in:
parent
240896a4dd
commit
5f5bb1f700
5 changed files with 10 additions and 29 deletions
|
@ -224,12 +224,6 @@ var _ = Describe("Receive Stream", func() {
|
|||
Expect(b).To(Equal([]byte("foobar")))
|
||||
})
|
||||
|
||||
It("passes on errors from the streamFrameSorter", func() {
|
||||
mockFC.EXPECT().UpdateHighestReceived(protocol.ByteCount(0), false)
|
||||
err := str.handleStreamFrame(&wire.StreamFrame{StreamID: streamID}) // STREAM frame without data
|
||||
Expect(err).To(MatchError(errEmptyStreamData))
|
||||
})
|
||||
|
||||
Context("deadlines", func() {
|
||||
It("the deadline error has the right net.Error properties", func() {
|
||||
Expect(errDeadline.Temporary()).To(BeTrue())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue