implement NACK range parsing in ACK frames

This commit is contained in:
Marten Seemann
2016-04-19 20:39:40 +07:00
parent 83416ab861
commit 5381bfe220
3 changed files with 77 additions and 7 deletions

9
ackhandler/nack_range.go Normal file
View File

@@ -0,0 +1,9 @@
package ackhandler
import "github.com/lucas-clemente/quic-go/protocol"
// NackRange is a NACK range
type NackRange struct {
FirstPacketNumber protocol.PacketNumber
Length uint8
}