From ec570f769b8bfe93ec158c42fae00e446202b7ed Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Sun, 14 Aug 2022 23:51:27 +0200 Subject: [PATCH] Do not update max_packet_size if not explicitly specified --- rcon/client.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/rcon/client.py b/rcon/client.py index c2e7ffe..0c94797 100644 --- a/rcon/client.py +++ b/rcon/client.py @@ -9,6 +9,8 @@ __all__ = ['BaseClient'] class BaseClient: """A common RCON client.""" + _max_pkg_size: int | None = None + def __init__( self, host: str, port: int, *, timeout: float | None = None, @@ -29,8 +31,9 @@ class BaseClient: ): if socket_type is not None: cls._socket_type = socket_type - - cls._max_pkg_size = max_pkg_size + + if max_pkg_size is not None: + cls._max_pkg_size = max_pkg_size def __enter__(self): """Attempt an auto-login if a password is set."""