save the max_ack_delay in the rttStats

This commit is contained in:
Marten Seemann 2019-06-29 13:35:07 +07:00
parent 4fe0f6752c
commit b5764f22a2
7 changed files with 19 additions and 25 deletions

View file

@ -293,7 +293,7 @@ var _ = Describe("SentPacketHandler", func() {
It("ignores the DelayTime for Initial and Handshake packets", func() {
handler.SentPacket(cryptoPacket(&Packet{PacketNumber: 1}))
handler.SetMaxAckDelay(time.Hour)
handler.rttStats.SetMaxAckDelay(time.Hour)
// make sure the rttStats have a min RTT, so that the delay is used
handler.rttStats.UpdateRTT(5*time.Minute, 0, time.Now())
getPacket(1, protocol.EncryptionInitial).SendTime = time.Now().Add(-10 * time.Minute)
@ -306,7 +306,7 @@ var _ = Describe("SentPacketHandler", func() {
})
It("uses the DelayTime in the ACK frame", func() {
handler.SetMaxAckDelay(time.Hour)
handler.rttStats.SetMaxAckDelay(time.Hour)
// make sure the rttStats have a min RTT, so that the delay is used
handler.rttStats.UpdateRTT(5*time.Minute, 0, time.Now())
getPacket(1, protocol.Encryption1RTT).SendTime = time.Now().Add(-10 * time.Minute)
@ -319,7 +319,7 @@ var _ = Describe("SentPacketHandler", func() {
})
It("limits the DelayTime in the ACK frame to max_ack_delay", func() {
handler.SetMaxAckDelay(time.Minute)
handler.rttStats.SetMaxAckDelay(time.Minute)
// make sure the rttStats have a min RTT, so that the delay is used
handler.rttStats.UpdateRTT(5*time.Minute, 0, time.Now())
getPacket(1, protocol.Encryption1RTT).SendTime = time.Now().Add(-10 * time.Minute)