mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
uTLS is not yet bumped to the new version, so this commit breaks the dependencies relationship by getting rid of the local replace.
50 lines
1.3 KiB
Go
50 lines
1.3 KiB
Go
package wire
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
|
|
"github.com/refraction-networking/uquic/internal/protocol"
|
|
"github.com/refraction-networking/uquic/quicvarint"
|
|
)
|
|
|
|
// A StreamsBlockedFrame is a STREAMS_BLOCKED frame
|
|
type StreamsBlockedFrame struct {
|
|
Type protocol.StreamType
|
|
StreamLimit protocol.StreamNum
|
|
}
|
|
|
|
func parseStreamsBlockedFrame(r *bytes.Reader, typ uint64, _ protocol.VersionNumber) (*StreamsBlockedFrame, error) {
|
|
f := &StreamsBlockedFrame{}
|
|
switch typ {
|
|
case bidiStreamBlockedFrameType:
|
|
f.Type = protocol.StreamTypeBidi
|
|
case uniStreamBlockedFrameType:
|
|
f.Type = protocol.StreamTypeUni
|
|
}
|
|
streamLimit, err := quicvarint.Read(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) Append(b []byte, _ protocol.VersionNumber) ([]byte, error) {
|
|
switch f.Type {
|
|
case protocol.StreamTypeBidi:
|
|
b = append(b, bidiStreamBlockedFrameType)
|
|
case protocol.StreamTypeUni:
|
|
b = append(b, uniStreamBlockedFrameType)
|
|
}
|
|
b = quicvarint.Append(b, uint64(f.StreamLimit))
|
|
return b, nil
|
|
}
|
|
|
|
// Length of a written frame
|
|
func (f *StreamsBlockedFrame) Length(_ protocol.VersionNumber) protocol.ByteCount {
|
|
return 1 + quicvarint.Len(uint64(f.StreamLimit))
|
|
}
|