mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
17 lines
367 B
Go
17 lines
367 B
Go
package wire
|
|
|
|
import (
|
|
"github.com/refraction-networking/uquic/internal/protocol"
|
|
)
|
|
|
|
// A PingFrame is a PING frame
|
|
type PingFrame struct{}
|
|
|
|
func (f *PingFrame) Append(b []byte, _ protocol.Version) ([]byte, error) {
|
|
return append(b, pingFrameType), nil
|
|
}
|
|
|
|
// Length of a written frame
|
|
func (f *PingFrame) Length(_ protocol.Version) protocol.ByteCount {
|
|
return 1
|
|
}
|