You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
960 B
28 lines
960 B
<?php
|
|
/**
|
|
* Library to query servers that implement Source Engine Query protocol.
|
|
*
|
|
* Special thanks to koraktor for his awesome Steam Condenser class,
|
|
* I used it as a reference at some points.
|
|
*
|
|
* @author Pavel Djundik
|
|
*
|
|
* @link https://xpaw.me
|
|
* @link https://github.com/xPaw/PHP-Source-Query
|
|
*
|
|
* @license GNU Lesser General Public License, version 2.1
|
|
*/
|
|
|
|
require_once __DIR__ . '/Exception/SourceQueryException.php';
|
|
require_once __DIR__ . '/Exception/AuthenticationException.php';
|
|
require_once __DIR__ . '/Exception/InvalidArgumentException.php';
|
|
require_once __DIR__ . '/Exception/SocketException.php';
|
|
require_once __DIR__ . '/Exception/InvalidPacketException.php';
|
|
|
|
require_once __DIR__ . '/Buffer.php';
|
|
require_once __DIR__ . '/BaseSocket.php';
|
|
require_once __DIR__ . '/Socket.php';
|
|
require_once __DIR__ . '/SourceRcon.php';
|
|
require_once __DIR__ . '/GoldSourceRcon.php';
|
|
require_once __DIR__ . '/SourceQuery.php';
|