fix dropping of 0-RTT packets

This commit is contained in:
Marten Seemann 2020-09-07 12:42:33 +07:00
parent bed802aee5
commit ad40c9cc83
3 changed files with 23 additions and 14 deletions

View file

@ -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)))