forked from quic-go/quic-go
* wire: add benchmarks for the frame parser * wire: use quicvarint.Parse when parsing frames * wire: always use io.EOF for too short frames
44 lines
1.2 KiB
Go
44 lines
1.2 KiB
Go
package wire
|
|
|
|
import (
|
|
"github.com/quic-go/quic-go/internal/protocol"
|
|
"github.com/quic-go/quic-go/quicvarint"
|
|
)
|
|
|
|
// A MaxStreamDataFrame is a MAX_STREAM_DATA frame
|
|
type MaxStreamDataFrame struct {
|
|
StreamID protocol.StreamID
|
|
MaximumStreamData protocol.ByteCount
|
|
}
|
|
|
|
func parseMaxStreamDataFrame(b []byte, _ protocol.Version) (*MaxStreamDataFrame, int, error) {
|
|
startLen := len(b)
|
|
sid, l, err := quicvarint.Parse(b)
|
|
if err != nil {
|
|
return nil, 0, replaceUnexpectedEOF(err)
|
|
}
|
|
b = b[l:]
|
|
offset, l, err := quicvarint.Parse(b)
|
|
if err != nil {
|
|
return nil, 0, replaceUnexpectedEOF(err)
|
|
}
|
|
b = b[l:]
|
|
|
|
return &MaxStreamDataFrame{
|
|
StreamID: protocol.StreamID(sid),
|
|
MaximumStreamData: protocol.ByteCount(offset),
|
|
}, startLen - len(b), nil
|
|
}
|
|
|
|
func (f *MaxStreamDataFrame) Append(b []byte, _ protocol.Version) ([]byte, error) {
|
|
b = append(b, maxStreamDataFrameType)
|
|
b = quicvarint.Append(b, uint64(f.StreamID))
|
|
b = quicvarint.Append(b, uint64(f.MaximumStreamData))
|
|
return b, nil
|
|
}
|
|
|
|
// Length of a written frame
|
|
func (f *MaxStreamDataFrame) Length(protocol.Version) protocol.ByteCount {
|
|
return 1 + protocol.ByteCount(quicvarint.Len(uint64(f.StreamID))+quicvarint.Len(uint64(f.MaximumStreamData)))
|
|
}
|