mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
55 lines
1.3 KiB
Go
55 lines
1.3 KiB
Go
package wire
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
"github.com/lucas-clemente/quic-go/quicvarint"
|
|
)
|
|
|
|
// A StreamsBlockedFrame is a STREAMS_BLOCKED frame
|
|
type StreamsBlockedFrame struct {
|
|
Type protocol.StreamType
|
|
StreamLimit protocol.StreamNum
|
|
}
|
|
|
|
func parseStreamsBlockedFrame(r *bytes.Reader, _ protocol.VersionNumber) (*StreamsBlockedFrame, error) {
|
|
typeByte, err := r.ReadByte()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
f := &StreamsBlockedFrame{}
|
|
switch typeByte {
|
|
case 0x16:
|
|
f.Type = protocol.StreamTypeBidi
|
|
case 0x17:
|
|
f.Type = protocol.StreamTypeUni
|
|
}
|
|
streamLimit, err := quicvarint.ReadVarInt(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
f.StreamLimit = protocol.StreamNum(streamLimit)
|
|
if f.StreamLimit > protocol.MaxStreamCount {
|
|
return nil, fmt.Errorf("%d exceeds the maximum stream count", f.StreamLimit)
|
|
}
|
|
return f, nil
|
|
}
|
|
|
|
func (f *StreamsBlockedFrame) Write(b *bytes.Buffer, _ protocol.VersionNumber) error {
|
|
switch f.Type {
|
|
case protocol.StreamTypeBidi:
|
|
b.WriteByte(0x16)
|
|
case protocol.StreamTypeUni:
|
|
b.WriteByte(0x17)
|
|
}
|
|
quicvarint.WriteVarInt(b, uint64(f.StreamLimit))
|
|
return nil
|
|
}
|
|
|
|
// Length of a written frame
|
|
func (f *StreamsBlockedFrame) Length(_ protocol.VersionNumber) protocol.ByteCount {
|
|
return 1 + quicvarint.VarIntLen(uint64(f.StreamLimit))
|
|
}
|