mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
uTLS is not yet bumped to the new version, so this commit breaks the dependencies relationship by getting rid of the local replace.
35 lines
802 B
Go
35 lines
802 B
Go
package wire
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
|
|
"github.com/refraction-networking/uquic/internal/protocol"
|
|
)
|
|
|
|
// A PathChallengeFrame is a PATH_CHALLENGE frame
|
|
type PathChallengeFrame struct {
|
|
Data [8]byte
|
|
}
|
|
|
|
func parsePathChallengeFrame(r *bytes.Reader, _ protocol.VersionNumber) (*PathChallengeFrame, error) {
|
|
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, pathChallengeFrameType)
|
|
b = append(b, f.Data[:]...)
|
|
return b, nil
|
|
}
|
|
|
|
// Length of a written frame
|
|
func (f *PathChallengeFrame) Length(_ protocol.VersionNumber) protocol.ByteCount {
|
|
return 1 + 8
|
|
}
|