better debug output for retransmissions

This commit is contained in:
Marten Seemann
2016-04-30 10:57:10 +07:00
parent 06b51871b1
commit 8a3b667c38
2 changed files with 3 additions and 2 deletions

View File

@@ -13,8 +13,8 @@ var errInvalidNackRanges = errors.New("AckFrame: ACK frame contains invalid NACK
// An AckFrame in QUIC
type AckFrame struct {
Entropy byte
LargestObserved protocol.PacketNumber
Entropy byte
DelayTime time.Duration
NackRanges []NackRange // has to be ordered. The NACK range with the highest FirstPacketNumber goes first, the NACK range with the lowest FirstPacketNumber goes last
}