route/vendor/github.com/lucas-clemente/quic-go/internal/wire/ack_range.go

10 lines
187 B
Go
Raw Normal View History

2018-01-03 19:19:49 +00:00
package wire
import "github.com/lucas-clemente/quic-go/internal/protocol"
// AckRange is an ACK range
type AckRange struct {
First protocol.PacketNumber
Last protocol.PacketNumber
}