1
0
mirror of https://github.com/xPaw/PHP-Source-Query.git synced 2026-06-16 15:43:16 +02:00

Remove duplicated code in the TestableSocket.

This commit is contained in:
Anthony Birkett
2021-05-31 19:17:21 +01:00
parent 5d54dc8929
commit 723ed0589c
5 changed files with 94 additions and 81 deletions
@@ -0,0 +1,34 @@
<?php
declare(strict_types=1);
/**
* @author Pavel Djundik
*
* @see https://xpaw.me
* @see https://github.com/xPaw/PHP-Source-Query
*
* @license GNU Lesser General Public License, version 2.1
*
* @internal
*/
namespace xPaw\SourceQuery\Socket\Traits;
use xPaw\SourceQuery\Buffer;
trait GoldSourcePacketDataTrait
{
protected function readInternalPacketData(
Buffer $buffer,
int &$count,
int &$number,
bool &$isCompressed,
?int &$checksum
): void {
$packetCountAndNumber = $buffer->getByte();
$count = $packetCountAndNumber & 0xF;
$number = $packetCountAndNumber >> 4;
$isCompressed = false;
}
}