mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
40 lines
1,022 B
Go
40 lines
1,022 B
Go
package wire
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
"github.com/lucas-clemente/quic-go/internal/utils"
|
|
)
|
|
|
|
// A MaxDataFrame carries flow control information for the connection
|
|
type MaxDataFrame struct {
|
|
MaximumData protocol.ByteCount
|
|
}
|
|
|
|
// parseMaxDataFrame parses a MAX_DATA frame
|
|
func parseMaxDataFrame(r *bytes.Reader, _ protocol.VersionNumber) (*MaxDataFrame, error) {
|
|
if _, err := r.ReadByte(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
frame := &MaxDataFrame{}
|
|
byteOffset, err := utils.ReadVarInt(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
frame.MaximumData = protocol.ByteCount(byteOffset)
|
|
return frame, nil
|
|
}
|
|
|
|
// Write writes a MAX_STREAM_DATA frame
|
|
func (f *MaxDataFrame) Write(b *bytes.Buffer, version protocol.VersionNumber) error {
|
|
b.WriteByte(0x10)
|
|
utils.WriteVarInt(b, uint64(f.MaximumData))
|
|
return nil
|
|
}
|
|
|
|
// Length of a written frame
|
|
func (f *MaxDataFrame) Length(version protocol.VersionNumber) protocol.ByteCount {
|
|
return 1 + utils.VarIntLen(uint64(f.MaximumData))
|
|
}
|