github.com/metacubex/quic-go@v0.44.1-0.20240520163451-20b689a59136/internal/wire/ping_frame.go (about)

     1  package wire
     2  
     3  import (
     4  	"github.com/metacubex/quic-go/internal/protocol"
     5  )
     6  
     7  // A PingFrame is a PING frame
     8  type PingFrame struct{}
     9  
    10  func (f *PingFrame) Append(b []byte, _ protocol.Version) ([]byte, error) {
    11  	return append(b, pingFrameType), nil
    12  }
    13  
    14  // Length of a written frame
    15  func (f *PingFrame) Length(_ protocol.Version) protocol.ByteCount {
    16  	return 1
    17  }