grcon/util/packet.go
Augusto Dwenger J. 1cda9ca591
Init commit
Initially it was the idea that this would be version 2 of the
https://github.com/hamburghammer/rcon lib but I changed my mind and
decided to make a new Project out of it.
It has formally nothing to do with the original lib.
2022-02-17 22:33:58 +01:00

24 lines
643 B
Go

package util
import "github.com/hamburghammer/grcon"
// NewExecCommandPacket creates a new grcon.Packet with
// the correct Type and the given Id and command string as Body.
func NewExecCommandPacket(id int32, cmd string) grcon.Packet {
return grcon.Packet{
Id: grcon.PacketId(id),
Type: grcon.SERVERDATA_EXECCOMMAND,
Body: []byte(cmd),
}
}
// NewEmptyResponseValuePacket returns an empty response value Type packet
// with an empty Body and the given Id.
func NewEmptyResponseValuePacket(id int32) grcon.Packet {
return grcon.Packet{
Id: grcon.PacketId(id),
Type: grcon.SERVERDATA_RESPONSE_VALUE,
Body: []byte(""),
}
}