Browse Source

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.
pull/3/head
Svante Boberg 4 years ago
parent
commit
a7d73694bf
No known key found for this signature in database GPG Key ID: 894FAA017F467150
  1. 8
      rcon/client.py

8
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()

Loading…
Cancel
Save