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.
35 lines
936 B
Go
35 lines
936 B
Go
package wire
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"github.com/refraction-networking/uquic/internal/protocol"
|
|
"github.com/refraction-networking/uquic/quicvarint"
|
|
)
|
|
|
|
// 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) {
|
|
frame := &MaxDataFrame{}
|
|
byteOffset, err := quicvarint.Read(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
frame.MaximumData = protocol.ByteCount(byteOffset)
|
|
return frame, nil
|
|
}
|
|
|
|
func (f *MaxDataFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error) {
|
|
b = append(b, maxDataFrameType)
|
|
b = quicvarint.Append(b, uint64(f.MaximumData))
|
|
return b, nil
|
|
}
|
|
|
|
// Length of a written frame
|
|
func (f *MaxDataFrame) Length(_ protocol.VersionNumber) protocol.ByteCount {
|
|
return 1 + quicvarint.Len(uint64(f.MaximumData))
|
|
}
|