Compare commits

...

2 commits

Author SHA1 Message Date
Augusto Dwenger J. 3c83ea1c02
Add comment to the Packet struct 2022-03-16 11:19:37 +01:00
Augusto Dwenger J. 1417f725a7
Fix package descriptions 2022-03-16 11:16:44 +01:00
4 changed files with 4 additions and 3 deletions

View file

@ -1,4 +1,4 @@
// A package with client implementations to interact over RCON with different servers.
// Package client provides some implementations to interact over RCON with different servers.
package client
// Client is the interface that should be implemented by ever client type.

View file

@ -1,5 +1,5 @@
/*
A Go written library for the RCON Protocol from Valve.
Package grcon library for the RCON Protocol from Valve.
Information to the protocol can be found under:
https://developer.valvesoftware.com/wiki/Source_RCON_Protocol

View file

@ -35,6 +35,7 @@ const (
SERVERDATA_AUTH_RESPONSE PacketType = 2
)
// Packet encapsulates all fields of a RCON packet excluding the size field.
type Packet struct {
Id PacketId
Type PacketType

View file

@ -1,4 +1,4 @@
/*
A module with some functions to simplify the interactions with the RemoteConsole.
Package util provides some functions to simplify the interactions with the RemoteConsole.
*/
package util