Added documentation for RCON and Query

This commit is contained in:
Shoghi Cervantes Pueyo 2013-04-23 01:21:34 +02:00
parent ee73ccc0e2
commit cb42e5832b
2 changed files with 8 additions and 2 deletions

View File

@ -25,7 +25,10 @@ the Free Software Foundation, either version 3 of the License, or
*/
/*
Implementation of the UT3 Query Protocol (GameSpot)
Source: http://wiki.unrealadmin.org/UT3_query_protocol
*/
class Query{
private $socket, $workers, $threads, $server, $token, $longData, $timeout;

View File

@ -25,7 +25,10 @@ the Free Software Foundation, either version 3 of the License, or
*/
/*
Implementation of the Source RCON Protocol to allow remote console commands
Source: https://developer.valvesoftware.com/wiki/Source_RCON_Protocol
*/
class RCON{
private $socket, $password, $workers, $threads;