calculate loss alarm based on send time of last retransmittable packet

This commit is contained in:
Marten Seemann 2018-03-17 11:13:55 +00:00
parent 076e03a094
commit 46f8930fef
2 changed files with 16 additions and 11 deletions

View file

@ -114,12 +114,14 @@ var _ = Describe("SentPacketHandler", func() {
It("stores the sent time", func() {
handler.SentPacket(retransmittablePacket(1))
Expect(getPacket(1).sendTime.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
Expect(getPacket(1).sendTime).To(BeTemporally("~", time.Now(), 100*time.Millisecond))
Expect(handler.lastSentRetransmittablePacketTime).To(BeTemporally("~", time.Now(), 100*time.Millisecond))
})
It("does not store non-retransmittable packets", func() {
handler.SentPacket(nonRetransmittablePacket(1))
Expect(handler.packetHistory.Len()).To(BeZero())
Expect(handler.lastSentRetransmittablePacketTime).To(BeZero())
})
Context("skipped packet numbers", func() {