mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
17 lines
355 B
Go
17 lines
355 B
Go
package wire
|
|
|
|
import (
|
|
"github.com/quic-go/quic-go/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
|
|
}
|