mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
use shorter packet numbers on Long Header packets
This commit is contained in:
parent
5bfac02a44
commit
fb65a017ac
2 changed files with 2 additions and 9 deletions
|
@ -113,12 +113,11 @@ var _ = Describe("Packet packer", func() {
|
|||
|
||||
Context("generating a packet header", func() {
|
||||
It("uses the Long Header format", func() {
|
||||
pnManager.EXPECT().PeekPacketNumber(protocol.EncryptionHandshake).Return(protocol.PacketNumber(0x42), protocol.PacketNumberLen2)
|
||||
pnManager.EXPECT().PeekPacketNumber(protocol.EncryptionHandshake).Return(protocol.PacketNumber(0x42), protocol.PacketNumberLen3)
|
||||
h := packer.getLongHeader(protocol.EncryptionHandshake)
|
||||
Expect(h.IsLongHeader).To(BeTrue())
|
||||
Expect(h.PacketNumber).To(Equal(protocol.PacketNumber(0x42)))
|
||||
// long headers always use 4 byte packet numbers, no matter what the packet number generator says
|
||||
Expect(h.PacketNumberLen).To(Equal(protocol.PacketNumberLen4))
|
||||
Expect(h.PacketNumberLen).To(Equal(protocol.PacketNumberLen3))
|
||||
Expect(h.Version).To(Equal(packer.version))
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue