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;