2018-11-20 17:51:25 -05:00
|
|
|
package wire
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
|
2019-01-17 09:33:18 -05:00
|
|
|
"v2ray.com/core/external/github.com/lucas-clemente/quic-go/internal/protocol"
|
|
|
|
"v2ray.com/core/external/github.com/lucas-clemente/quic-go/internal/utils"
|
2018-11-20 17:51:25 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// A MaxDataFrame carries flow control information for the connection
|
|
|
|
type MaxDataFrame struct {
|
|
|
|
ByteOffset protocol.ByteCount
|
|
|
|
}
|
|
|
|
|
|
|
|
// parseMaxDataFrame parses a MAX_DATA frame
|
|
|
|
func parseMaxDataFrame(r *bytes.Reader, version 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.ByteOffset = protocol.ByteCount(byteOffset)
|
|
|
|
return frame, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
//Write writes a MAX_STREAM_DATA frame
|
|
|
|
func (f *MaxDataFrame) Write(b *bytes.Buffer, version protocol.VersionNumber) error {
|
2018-11-23 11:04:53 -05:00
|
|
|
b.WriteByte(0x10)
|
2018-11-20 17:51:25 -05:00
|
|
|
utils.WriteVarInt(b, uint64(f.ByteOffset))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Length of a written frame
|
|
|
|
func (f *MaxDataFrame) Length(version protocol.VersionNumber) protocol.ByteCount {
|
|
|
|
return 1 + utils.VarIntLen(uint64(f.ByteOffset))
|
|
|
|
}
|