uquic/internal/utils/packet_interval.go
2017-06-09 22:28:40 +02:00

10 lines
244 B
Go

package utils
import "github.com/lucas-clemente/quic-go/protocol"
// PacketInterval is an interval from one PacketNumber to the other
// +gen linkedlist
type PacketInterval struct {
Start protocol.PacketNumber
End protocol.PacketNumber
}