mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47: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.
42 lines
1.1 KiB
Go
42 lines
1.1 KiB
Go
package wire
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"github.com/refraction-networking/uquic/internal/protocol"
|
|
"github.com/refraction-networking/uquic/quicvarint"
|
|
)
|
|
|
|
// A StreamDataBlockedFrame is a STREAM_DATA_BLOCKED frame
|
|
type StreamDataBlockedFrame struct {
|
|
StreamID protocol.StreamID
|
|
MaximumStreamData protocol.ByteCount
|
|
}
|
|
|
|
func parseStreamDataBlockedFrame(r *bytes.Reader, _ protocol.VersionNumber) (*StreamDataBlockedFrame, error) {
|
|
sid, err := quicvarint.Read(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
offset, err := quicvarint.Read(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &StreamDataBlockedFrame{
|
|
StreamID: protocol.StreamID(sid),
|
|
MaximumStreamData: protocol.ByteCount(offset),
|
|
}, nil
|
|
}
|
|
|
|
func (f *StreamDataBlockedFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error) {
|
|
b = append(b, 0x15)
|
|
b = quicvarint.Append(b, uint64(f.StreamID))
|
|
b = quicvarint.Append(b, uint64(f.MaximumStreamData))
|
|
return b, nil
|
|
}
|
|
|
|
// Length of a written frame
|
|
func (f *StreamDataBlockedFrame) Length(version protocol.VersionNumber) protocol.ByteCount {
|
|
return 1 + quicvarint.Len(uint64(f.StreamID)) + quicvarint.Len(uint64(f.MaximumStreamData))
|
|
}
|