mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
save version numbers such that can be written in big endian
This makes the version number representation consistent with the IETF draft.
This commit is contained in:
parent
e81795e49b
commit
d98a11bb35
18 changed files with 68 additions and 65 deletions
|
@ -10,8 +10,8 @@ var _ = Describe("Version Negotiation Packet", func() {
|
|||
It("composes version negotiation packets", func() {
|
||||
expected := append(
|
||||
[]byte{0x01 | 0x08, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1},
|
||||
[]byte{'Q', '0', '9', '9'}...,
|
||||
[]byte{'Q', '0', '3', '9'}...,
|
||||
)
|
||||
Expect(ComposeVersionNegotiation(1, []protocol.VersionNumber{99})).To(Equal(expected))
|
||||
Expect(ComposeVersionNegotiation(1, []protocol.VersionNumber{protocol.Version39})).To(Equal(expected))
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue