go-teeworlds-protocol/messages7/auth_result.go

45 lines
892 B
Go
Raw Permalink 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"
)
// this message is unused in the official 0.7.5 implementation
type AuthResult struct {
ChunkHeader *chunk7.ChunkHeader
}
func (msg *AuthResult) MsgId() int {
2024-06-23 04:19:27 +00:00
return network7.MsgSysAuthResult
}
func (msg *AuthResult) MsgType() network7.MsgType {
2024-06-23 04:19:27 +00:00
return network7.TypeNet
}
func (msg *AuthResult) System() bool {
2024-06-23 04:19:27 +00:00
return true
}
func (msg *AuthResult) Vital() bool {
2024-06-23 04:19:27 +00:00
return true
}
func (msg *AuthResult) Pack() []byte {
2024-06-23 04:19:27 +00:00
return []byte{}
}
func (msg *AuthResult) Unpack(u *packer.Unpacker) error {
return nil
2024-06-23 04:19:27 +00:00
}
func (msg *AuthResult) Header() *chunk7.ChunkHeader {
return msg.ChunkHeader
}
func (msg *AuthResult) SetHeader(header *chunk7.ChunkHeader) {
msg.ChunkHeader = header
}