mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
35 lines
775 B
Go
35 lines
775 B
Go
package wire
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
|
|
"github.com/refraction-networking/uquic/internal/protocol"
|
|
)
|
|
|
|
// A PathResponseFrame is a PATH_RESPONSE frame
|
|
type PathResponseFrame struct {
|
|
Data [8]byte
|
|
}
|
|
|
|
func parsePathResponseFrame(r *bytes.Reader, _ protocol.Version) (*PathResponseFrame, error) {
|
|
frame := &PathResponseFrame{}
|
|
if _, err := io.ReadFull(r, frame.Data[:]); err != nil {
|
|
if err == io.ErrUnexpectedEOF {
|
|
return nil, io.EOF
|
|
}
|
|
return nil, err
|
|
}
|
|
return frame, nil
|
|
}
|
|
|
|
func (f *PathResponseFrame) Append(b []byte, _ protocol.Version) ([]byte, error) {
|
|
b = append(b, pathResponseFrameType)
|
|
b = append(b, f.Data[:]...)
|
|
return b, nil
|
|
}
|
|
|
|
// Length of a written frame
|
|
func (f *PathResponseFrame) Length(_ protocol.Version) protocol.ByteCount {
|
|
return 1 + 8
|
|
}
|