mirror of
https://github.com/onyx-and-iris/q3rcon.git
synced 2026-04-19 00:03:31 +00:00
first commit
This commit is contained in:
25
internal/packet/request.go
Normal file
25
internal/packet/request.go
Normal file
@@ -0,0 +1,25 @@
|
||||
package packet
|
||||
|
||||
import "fmt"
|
||||
|
||||
type Request struct {
|
||||
magic []byte
|
||||
password string
|
||||
}
|
||||
|
||||
func NewRequest(password string) Request {
|
||||
return Request{
|
||||
magic: []byte{'\xff', '\xff', '\xff', '\xff'},
|
||||
password: password,
|
||||
}
|
||||
}
|
||||
|
||||
func (r Request) Header() []byte {
|
||||
return append(r.magic, []byte("rcon")...)
|
||||
}
|
||||
|
||||
func (r Request) Encode(cmd string) []byte {
|
||||
datagram := r.Header()
|
||||
datagram = append(datagram, fmt.Sprintf(" %s %s", r.password, cmd)...)
|
||||
return datagram
|
||||
}
|
||||
13
internal/packet/response.go
Normal file
13
internal/packet/response.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package packet
|
||||
|
||||
type Response struct {
|
||||
magic []byte
|
||||
}
|
||||
|
||||
func NewResponse() Response {
|
||||
return Response{magic: []byte{'\xff', '\xff', '\xff', '\xff'}}
|
||||
}
|
||||
|
||||
func (r Response) Header() []byte {
|
||||
return append(r.magic, []byte("print\n")...)
|
||||
}
|
||||
Reference in New Issue
Block a user