mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
38 lines
834 B
Go
38 lines
834 B
Go
package wire
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
|
|
"github.com/quic-go/quic-go/internal/protocol"
|
|
)
|
|
|
|
// A PathChallengeFrame is a PATH_CHALLENGE frame
|
|
type PathChallengeFrame struct {
|
|
Data [8]byte
|
|
}
|
|
|
|
func parsePathChallengeFrame(r *bytes.Reader, _ protocol.VersionNumber) (*PathChallengeFrame, error) {
|
|
if _, err := r.ReadByte(); err != nil {
|
|
return nil, err
|
|
}
|
|
frame := &PathChallengeFrame{}
|
|
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 *PathChallengeFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error) {
|
|
b = append(b, 0x1a)
|
|
b = append(b, f.Data[:]...)
|
|
return b, nil
|
|
}
|
|
|
|
// Length of a written frame
|
|
func (f *PathChallengeFrame) Length(_ protocol.VersionNumber) protocol.ByteCount {
|
|
return 1 + 8
|
|
}
|