mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
include the packet size in the error when packing a too large packet
This commit is contained in:
parent
30851b9a3b
commit
38c420a35b
2 changed files with 5 additions and 3 deletions
|
@ -679,7 +679,8 @@ var _ = Describe("Packet packer", func() {
|
|||
},
|
||||
}
|
||||
_, err := packer.PackHandshakeRetransmission(packet)
|
||||
Expect(err).To(MatchError("PacketPacker BUG: packet too large"))
|
||||
Expect(err).To(HaveOccurred())
|
||||
Expect(err.Error()).To(ContainSubstring("PacketPacker BUG: packet too large"))
|
||||
})
|
||||
|
||||
It("pads Initial packets to the required minimum packet size", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue