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

11 lines
231 B
Go
Raw Normal View History

2017-12-12 02:51:45 +00:00
package utils
import "github.com/lucas-clemente/quic-go/protocol"
// ByteInterval is an interval from one ByteCount to the other
// +gen linkedlist
type ByteInterval struct {
Start protocol.ByteCount
End protocol.ByteCount
}