mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
add support for receiving BLOCKED frames
This commit is contained in:
parent
0d6642464d
commit
bd67f537c9
5 changed files with 74 additions and 6 deletions
|
@ -138,10 +138,14 @@ var _ = Describe("Packet unpacker", func() {
|
|||
})
|
||||
|
||||
It("accepts BLOCKED frames", func() {
|
||||
setReader([]byte{0x05, 0, 0, 0, 0})
|
||||
setReader([]byte{0x05, 0xEF, 0xBE, 0xAD, 0xDE})
|
||||
packet, err := unpacker.Unpack(hdrBin, hdr, r)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(packet.frames).To(HaveLen(0))
|
||||
Expect(packet.frames).To(Equal([]frames.Frame{
|
||||
&frames.BlockedFrame{
|
||||
StreamID: 0xDEADBEEF,
|
||||
},
|
||||
}))
|
||||
})
|
||||
|
||||
It("unpacks STOP_WAITING frames", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue