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

10 lines
221 B
Go
Raw Normal View History

2022-04-01 16:16:46 +00:00
package utils
import "github.com/lucas-clemente/quic-go/internal/protocol"
// ByteInterval is an interval from one ByteCount to the other
type ByteInterval struct {
Start protocol.ByteCount
End protocol.ByteCount
}