Browse Source

Rename max_pkg_size to max_packet_size

pull/14/head 2.2.3
Richard Neumann 3 years ago
parent
commit
84f8fc73cc
  1. 8
      rcon/client.py
  2. 5
      rcon/source/client.py

8
rcon/client.py

@ -9,7 +9,7 @@ __all__ = ['BaseClient']
class BaseClient:
"""A common RCON client."""
_max_pkg_size: int | None = None
_max_packet_size: int | None = None
def __init__(
self, host: str, port: int, *,
@ -27,13 +27,13 @@ class BaseClient:
cls,
*,
socket_type: SocketKind | None = None,
max_pkg_size: int | None = None
max_packet_size: int | None = None
):
if socket_type is not None:
cls._socket_type = socket_type
if max_pkg_size is not None:
cls._max_pkg_size = max_pkg_size
if max_packet_size is not None:
cls._max_packet_size = max_packet_size
def __enter__(self):
"""Attempt an auto-login if a password is set."""

5
rcon/source/client.py

@ -25,7 +25,10 @@ class Client(BaseClient, socket_type=SOCK_STREAM):
with self._socket.makefile('rb') as file:
packet = Packet.read(file)
if self._max_pkg_size and len(packet.payload) >= self._max_pkg_size:
if self._max_packet_size is None:
return packet
if len(packet.payload) >= self._max_packet_size:
return packet + self.read_followup_packet()
return packet

Loading…
Cancel
Save