mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
add Frame.MaxLength and implement it for currently needed frames
This commit is contained in:
parent
93cea4f5de
commit
6be70bc29c
7 changed files with 70 additions and 1 deletions
|
@ -51,6 +51,17 @@ var _ = Describe("StreamFrame", func() {
|
|||
}).Write(b)
|
||||
Expect(b.Bytes()).To(Equal([]byte{0xbf, 0x1, 0, 0, 0, 0x10, 0, 0, 0, 0, 0, 0, 0, 0x06, 0x00, 'f', 'o', 'o', 'b', 'a', 'r'}))
|
||||
})
|
||||
|
||||
It("has proper max length", func() {
|
||||
b := &bytes.Buffer{}
|
||||
f := &StreamFrame{
|
||||
StreamID: 1,
|
||||
Data: []byte("f"),
|
||||
Offset: 1,
|
||||
}
|
||||
f.Write(b)
|
||||
Expect(f.MaxLength()).To(Equal(b.Len()))
|
||||
})
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue