mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
fix determining of packet type from packet header in qlog
This commit is contained in:
parent
2f2583beb0
commit
1a539334b8
2 changed files with 9 additions and 1 deletions
|
@ -61,6 +61,13 @@ var _ = Describe("Packet Header", func() {
|
|||
It("recognizes 1-RTT packets", func() {
|
||||
Expect(PacketTypeFromHeader(&wire.Header{})).To(Equal(PacketType1RTT))
|
||||
})
|
||||
|
||||
It("handles unrecognized packet types", func() {
|
||||
Expect(PacketTypeFromHeader(&wire.Header{
|
||||
IsLongHeader: true,
|
||||
Version: protocol.VersionTLS,
|
||||
})).To(Equal(PacketTypeNotDetermined))
|
||||
})
|
||||
})
|
||||
|
||||
Context("marshalling", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue