From cb42e5832bd7bccb48c33f1f307857136ce8f68c Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Pueyo Date: Tue, 23 Apr 2013 01:21:34 +0200 Subject: [PATCH] Added documentation for RCON and Query --- src/network/Query.php | 5 ++++- src/network/RCON.php | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/network/Query.php b/src/network/Query.php index 65864a2d6..e450f2950 100644 --- a/src/network/Query.php +++ b/src/network/Query.php @@ -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; diff --git a/src/network/RCON.php b/src/network/RCON.php index 023f72f98..ab9629df1 100644 --- a/src/network/RCON.php +++ b/src/network/RCON.php @@ -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;