mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
wire: use constants for frame types (#3739)
This commit is contained in:
parent
48e18b922d
commit
7a393315bd
35 changed files with 118 additions and 100 deletions
|
@ -46,7 +46,7 @@ var _ = Describe("STOP_SENDING frame", func() {
|
|||
}
|
||||
b, err := frame.Append(nil, protocol.Version1)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
expected := []byte{0x5}
|
||||
expected := []byte{stopSendingFrameType}
|
||||
expected = append(expected, encodeVarInt(0xdeadbeefcafe)...)
|
||||
expected = append(expected, encodeVarInt(0xdecafbad)...)
|
||||
Expect(b).To(Equal(expected))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue