forked from quic-go/quic-go
ParseOtherFrames-16 148ns ± 4% 150ns ± 3% ~ (p=0.223 n=8+8) ParseAckFrame-16 302ns ± 2% 298ns ± 3% ~ (p=0.246 n=8+8) ParseStreamFrame-16 262ns ± 3% 213ns ± 2% -18.61% (p=0.000 n=8+8) ParseDatagramFrame-16 561ns ± 5% 547ns ± 4% ~ (p=0.105 n=8+8)
33 lines
678 B
Go
33 lines
678 B
Go
package wire
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/quic-go/quic-go/internal/protocol"
|
|
)
|
|
|
|
// A PathResponseFrame is a PATH_RESPONSE frame
|
|
type PathResponseFrame struct {
|
|
Data [8]byte
|
|
}
|
|
|
|
func parsePathResponseFrame(b []byte, _ protocol.Version) (*PathResponseFrame, int, error) {
|
|
f := &PathResponseFrame{}
|
|
if len(b) < 8 {
|
|
return nil, 0, io.EOF
|
|
}
|
|
copy(f.Data[:], b)
|
|
return f, 8, nil
|
|
}
|
|
|
|
func (f *PathResponseFrame) Append(b []byte, _ protocol.Version) ([]byte, error) {
|
|
b = append(b, byte(FrameTypePathResponse))
|
|
b = append(b, f.Data[:]...)
|
|
return b, nil
|
|
}
|
|
|
|
// Length of a written frame
|
|
func (f *PathResponseFrame) Length(_ protocol.Version) protocol.ByteCount {
|
|
return 1 + 8
|
|
}
|