Only write SERVERDATA_RESPONSE_VALUE once for multi packet responses

This fixes the bug where all RCON queries on same SourceQuery object would return empty responses
pull/124/head
Byte 7 years ago committed by GitHub
parent 95057e9c35
commit ee60bef189
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -146,10 +146,10 @@
// See https://developer.valvesoftware.com/wiki/Source_RCON_Protocol#Multiple-packet_Responses
if( StrLen( $Data ) >= 4000 )
{
$this->Write( SourceQuery::SERVERDATA_RESPONSE_VALUE );
do
{
$this->Write( SourceQuery::SERVERDATA_RESPONSE_VALUE );
{
$Buffer = $this->Read( );
$Buffer->GetLong( ); // RequestID

Loading…
Cancel
Save