mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
26 lines
543 B
Go
26 lines
543 B
Go
package wire
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"github.com/quic-go/quic-go/internal/protocol"
|
|
)
|
|
|
|
// A PingFrame is a PING frame
|
|
type PingFrame struct{}
|
|
|
|
func parsePingFrame(r *bytes.Reader, _ protocol.VersionNumber) (*PingFrame, error) {
|
|
if _, err := r.ReadByte(); err != nil {
|
|
return nil, err
|
|
}
|
|
return &PingFrame{}, nil
|
|
}
|
|
|
|
func (f *PingFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error) {
|
|
return append(b, 0x1), nil
|
|
}
|
|
|
|
// Length of a written frame
|
|
func (f *PingFrame) Length(_ protocol.VersionNumber) protocol.ByteCount {
|
|
return 1
|
|
}
|