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 MaxStreamDataFrame is a MAX_STREAM_DATA frame
|
|
type MaxStreamDataFrame struct {
|
|
StreamID protocol.StreamID
|
|
MaximumStreamData protocol.ByteCount
|
|
}
|
|
|
|
func parseMaxStreamDataFrame(r *bytes.Reader, _ protocol.VersionNumber) (*MaxStreamDataFrame, error) {
|
|
sid, err := quicvarint.Read(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
offset, err := quicvarint.Read(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &MaxStreamDataFrame{
|
|
StreamID: protocol.StreamID(sid),
|
|
MaximumStreamData: protocol.ByteCount(offset),
|
|
}, nil
|
|
}
|
|
|
|
func (f *MaxStreamDataFrame) Append(b []byte, version protocol.VersionNumber) ([]byte, error) {
|
|
b = append(b, maxStreamDataFrameType)
|
|
b = quicvarint.Append(b, uint64(f.StreamID))
|
|
b = quicvarint.Append(b, uint64(f.MaximumStreamData))
|
|
return b, nil
|
|
}
|
|
|
|
// Length of a written frame
|
|
func (f *MaxStreamDataFrame) Length(version protocol.VersionNumber) protocol.ByteCount {
|
|
return 1 + quicvarint.Len(uint64(f.StreamID)) + quicvarint.Len(uint64(f.MaximumStreamData))
|
|
}
|