mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
add a function to distinguish between long and short header packets (#3498)
This commit is contained in:
parent
bebff462c8
commit
80fd1b57c8
7 changed files with 21 additions and 11 deletions
|
@ -576,6 +576,11 @@ var _ = Describe("Header Parsing", func() {
|
|||
})
|
||||
})
|
||||
|
||||
It("distinguishes long and short header packets", func() {
|
||||
Expect(IsLongHeaderPacket(0x40)).To(BeFalse())
|
||||
Expect(IsLongHeaderPacket(0x80 ^ 0x40 ^ 0x12)).To(BeTrue())
|
||||
})
|
||||
|
||||
It("tells its packet type for logging", func() {
|
||||
Expect((&Header{IsLongHeader: true, Type: protocol.PacketTypeHandshake}).PacketType()).To(Equal("Handshake"))
|
||||
Expect((&Header{}).PacketType()).To(Equal("1-RTT"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue