github.com/ooni/psiphon/tunnel-core@v0.0.0-20230105123940-fe12a24c96ee/oovendor/quic-go/internal/utils/streamframe_interval.go (about)

     1  package utils
     2  
     3  import "github.com/ooni/psiphon/tunnel-core/oovendor/quic-go/internal/protocol"
     4  
     5  // ByteInterval is an interval from one ByteCount to the other
     6  type ByteInterval struct {
     7  	Start protocol.ByteCount
     8  	End   protocol.ByteCount
     9  }