mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
package wire
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
"github.com/lucas-clemente/quic-go/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) {
|
|
if _, err := r.ReadByte(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
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) Write(b *bytes.Buffer, version protocol.VersionNumber) error {
|
|
b.WriteByte(0x11)
|
|
quicvarint.Write(b, uint64(f.StreamID))
|
|
quicvarint.Write(b, uint64(f.MaximumStreamData))
|
|
return 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))
|
|
}
|