1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-19 10:26:10 -04:00
v2fly/external/github.com/lucas-clemente/quic-go/internal/protocol/stream_id.go

68 lines
1.5 KiB
Go
Raw Normal View History

2018-11-20 17:51:25 -05:00
package protocol
// A StreamID in QUIC
type StreamID uint64
2018-11-23 11:04:53 -05:00
// StreamType encodes if this is a unidirectional or bidirectional stream
type StreamType uint8
const (
// StreamTypeUni is a unidirectional stream
StreamTypeUni StreamType = iota
// StreamTypeBidi is a bidirectional stream
StreamTypeBidi
)
// InitiatedBy says if the stream was initiated by the client or by the server
func (s StreamID) InitiatedBy() Perspective {
if s%2 == 0 {
return PerspectiveClient
2018-11-20 17:51:25 -05:00
}
2018-11-23 11:04:53 -05:00
return PerspectiveServer
}
//Type says if this is a unidirectional or bidirectional stream
func (s StreamID) Type() StreamType {
if s%4 >= 2 {
return StreamTypeUni
2018-11-20 17:51:25 -05:00
}
2018-11-23 11:04:53 -05:00
return StreamTypeBidi
}
// StreamNum returns how many streams in total are below this
// Example: for stream 9 it returns 3 (i.e. streams 1, 5 and 9)
func (s StreamID) StreamNum() uint64 {
return uint64(s/4) + 1
2018-11-20 17:51:25 -05:00
}
2018-11-23 11:04:53 -05:00
// MaxStreamID is the highest stream ID that a peer is allowed to open,
// when it is allowed to open numStreams.
func MaxStreamID(stype StreamType, numStreams uint64, pers Perspective) StreamID {
2018-11-20 17:51:25 -05:00
if numStreams == 0 {
return 0
}
var first StreamID
2018-11-23 11:04:53 -05:00
switch stype {
case StreamTypeBidi:
switch pers {
case PerspectiveClient:
first = 0
case PerspectiveServer:
first = 1
}
case StreamTypeUni:
switch pers {
case PerspectiveClient:
first = 2
case PerspectiveServer:
first = 3
}
2018-11-20 17:51:25 -05:00
}
return first + 4*StreamID(numStreams-1)
}
2018-11-23 11:04:53 -05:00
// FirstStream returns the first valid stream ID
func FirstStream(stype StreamType, pers Perspective) StreamID {
return MaxStreamID(stype, 1, pers)
}