route/vendor/github.com/lucas-clemente/quic-go/internal/utils/packet_interval.go

11 lines
253 B
Go
Raw Normal View History

2017-12-12 02:51:45 +00:00
package utils
2018-01-03 19:19:49 +00:00
import "github.com/lucas-clemente/quic-go/internal/protocol"
2017-12-12 02:51:45 +00:00
// PacketInterval is an interval from one PacketNumber to the other
// +gen linkedlist
type PacketInterval struct {
Start protocol.PacketNumber
End protocol.PacketNumber
}