0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-30 22:34:15 -05:00
caddy/vendor/github.com/lucas-clemente/quic-go/internal/utils/streamframe_interval.go
2017-07-27 16:11:56 -06:00

10 lines
231 B
Go

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
}