mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix dropping of 0-RTT packets
This commit is contained in:
parent
bed802aee5
commit
ad40c9cc83
3 changed files with 23 additions and 14 deletions
|
@ -1036,7 +1036,7 @@ var _ = Describe("SentPacketHandler", func() {
|
|||
EncryptionLevel: protocol.Encryption0RTT,
|
||||
}))
|
||||
}
|
||||
for i := protocol.PacketNumber(0); i < 6; i++ {
|
||||
for i := protocol.PacketNumber(6); i < 12; i++ {
|
||||
handler.SentPacket(ackElicitingPacket(&Packet{PacketNumber: i}))
|
||||
}
|
||||
Expect(handler.bytesInFlight).To(Equal(protocol.ByteCount(12)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue