From 68e4c307ec268a874992bca0002ef88fd04a90e6 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Sun, 14 Aug 2022 23:08:53 +0200 Subject: [PATCH] Add optional max_pkg_size to Client --- rcon/client.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rcon/client.py b/rcon/client.py index 1c39442..328101c 100644 --- a/rcon/client.py +++ b/rcon/client.py @@ -12,7 +12,8 @@ class BaseClient: def __init__( self, host: str, port: int, *, timeout: float | None = None, - passwd: str | None = None + passwd: str | None = None, + max_pkg_size: int | None = None ): """Initialize the base client with the SOCK_STREAM socket type.""" self._socket = socket(type=self._socket_type) @@ -20,6 +21,7 @@ class BaseClient: self.port = port self.timeout = timeout self.passwd = passwd + self.max_pkg_size = max_pkg_size def __init_subclass__(cls, *, socket_type: SocketKind | None = None): if socket_type is not None: