go-teeworlds-protocol/messages7/ping.go

44 lines
769 B
Go
Raw Normal View History

2024-06-23 04:19:27 +00:00
package messages7
import (
"github.com/teeworlds-go/go-teeworlds-protocol/chunk7"
"github.com/teeworlds-go/go-teeworlds-protocol/network7"
"github.com/teeworlds-go/go-teeworlds-protocol/packer"
)
type Ping struct {
ChunkHeader *chunk7.ChunkHeader
}
func (msg *Ping) MsgId() int {
2024-06-23 04:19:27 +00:00
return network7.MsgSysPing
}
func (msg *Ping) MsgType() network7.MsgType {
2024-06-23 04:19:27 +00:00
return network7.TypeNet
}
func (msg *Ping) System() bool {
2024-06-23 04:19:27 +00:00
return true
}
func (msg *Ping) Vital() bool {
2024-06-23 04:19:27 +00:00
return true
}
func (msg *Ping) Pack() []byte {
2024-06-23 04:19:27 +00:00
return []byte{}
}
func (msg *Ping) Unpack(u *packer.Unpacker) error {
return nil
2024-06-23 04:19:27 +00:00
}
func (msg *Ping) Header() *chunk7.ChunkHeader {
return msg.ChunkHeader
}
func (msg *Ping) SetHeader(header *chunk7.ChunkHeader) {
msg.ChunkHeader = header
}