mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
31 lines
849 B
Go
31 lines
849 B
Go
package wire
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"github.com/refraction-networking/uquic/internal/protocol"
|
|
"github.com/refraction-networking/uquic/quicvarint"
|
|
)
|
|
|
|
// A DataBlockedFrame is a DATA_BLOCKED frame
|
|
type DataBlockedFrame struct {
|
|
MaximumData protocol.ByteCount
|
|
}
|
|
|
|
func parseDataBlockedFrame(r *bytes.Reader, _ protocol.Version) (*DataBlockedFrame, error) {
|
|
offset, err := quicvarint.Read(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &DataBlockedFrame{MaximumData: protocol.ByteCount(offset)}, nil
|
|
}
|
|
|
|
func (f *DataBlockedFrame) Append(b []byte, version protocol.Version) ([]byte, error) {
|
|
b = append(b, dataBlockedFrameType)
|
|
return quicvarint.Append(b, uint64(f.MaximumData)), nil
|
|
}
|
|
|
|
// Length of a written frame
|
|
func (f *DataBlockedFrame) Length(version protocol.Version) protocol.ByteCount {
|
|
return 1 + quicvarint.Len(uint64(f.MaximumData))
|
|
}
|