55 lines
1.2 KiB
Go
55 lines
1.2 KiB
Go
package frames
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"github.com/lucas-clemente/quic-go/protocol"
|
|
"github.com/lucas-clemente/quic-go/utils"
|
|
)
|
|
|
|
// A WindowUpdateFrame in QUIC
|
|
type WindowUpdateFrame struct {
|
|
StreamID protocol.StreamID
|
|
ByteOffset protocol.ByteCount
|
|
}
|
|
|
|
//Write writes a RST_STREAM frame
|
|
func (f *WindowUpdateFrame) Write(b *bytes.Buffer, version protocol.VersionNumber) error {
|
|
typeByte := uint8(0x04)
|
|
b.WriteByte(typeByte)
|
|
|
|
utils.WriteUint32(b, uint32(f.StreamID))
|
|
utils.WriteUint64(b, uint64(f.ByteOffset))
|
|
return nil
|
|
}
|
|
|
|
// MinLength of a written frame
|
|
func (f *WindowUpdateFrame) MinLength(version protocol.VersionNumber) (protocol.ByteCount, error) {
|
|
return 1 + 4 + 8, nil
|
|
}
|
|
|
|
// ParseWindowUpdateFrame parses a RST_STREAM frame
|
|
func ParseWindowUpdateFrame(r *bytes.Reader) (*WindowUpdateFrame, error) {
|
|
frame := &WindowUpdateFrame{}
|
|
|
|
// read the TypeByte
|
|
_, err := r.ReadByte()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
sid, err := utils.ReadUint32(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
frame.StreamID = protocol.StreamID(sid)
|
|
|
|
byteOffset, err := utils.ReadUint64(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
frame.ByteOffset = protocol.ByteCount(byteOffset)
|
|
|
|
return frame, nil
|
|
}
|