From a7d73694bf3b86f372ccd3e9eed99b68ad69ecb1 Mon Sep 17 00:00:00 2001 From: Svante Boberg Date: Sat, 19 Jun 2021 16:06:20 +0200 Subject: [PATCH] Wait for auth response packet According to the specification here: https://developer.valvesoftware.com/wiki/Source_RCON_Protocol there should always be a SERVERDATA_RESPONSE_VALUE coming before SERVERDATA_AUTH_RESPONSE which is the packet we are waiting for. This is also the behavior I see when running it with a CS:GO server. With the current implementation I always get RequestIdMismatch for any command after auth as the socket requests are out of sync. This fixes the issue for me. --- rcon/client.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/rcon/client.py b/rcon/client.py index 1402405..24965f6 100644 --- a/rcon/client.py +++ b/rcon/client.py @@ -4,7 +4,7 @@ from socket import socket from typing import Optional from rcon.exceptions import RequestIdMismatch, WrongPassword -from rcon.proto import Packet +from rcon.proto import Packet, Type __all__ = ['Client'] @@ -63,6 +63,9 @@ class Client: with self._socket.makefile('wb') as file: file.write(bytes(packet)) + return self.read() + + def read(self) -> Packet: with self._socket.makefile('rb') as file: return Packet.read(file) @@ -70,6 +73,9 @@ class Client: """Performs a login.""" response = self.communicate(Packet.make_login(passwd)) + while response.type != Type.SERVERDATA_AUTH_RESPONSE: + response = self.read() + if response.id == -1: raise WrongPassword()