Browse Source

Move frag detection parameters to __init__()

pull/14/head
Richard Neumann 3 years ago
parent
commit
6ccd90d7e6
  1. 10
      rcon/source/client.py

10
rcon/source/client.py

@ -13,8 +13,8 @@ __all__ = ['Client']
class Client(BaseClient, socket_type=SOCK_STREAM): class Client(BaseClient, socket_type=SOCK_STREAM):
"""An RCON client.""" """An RCON client."""
def __init_subclass__( def __init__(
cls, self,
*args, *args,
frag_threshold: int = 4096, frag_threshold: int = 4096,
frag_detect_cmd: str = '', frag_detect_cmd: str = '',
@ -25,9 +25,9 @@ class Client(BaseClient, socket_type=SOCK_STREAM):
For details see: https://wiki.vg/RCON#Fragmentation For details see: https://wiki.vg/RCON#Fragmentation
""" """
super().__init_subclass__(*args, **kwargs) super().__init__(*args, **kwargs)
cls.frag_threshold = frag_threshold self.frag_threshold = frag_threshold
cls.frag_detect_cmd = frag_detect_cmd self.frag_detect_cmd = frag_detect_cmd
def communicate(self, packet: Packet) -> Packet: def communicate(self, packet: Packet) -> Packet:
"""Send and receive a packet.""" """Send and receive a packet."""

Loading…
Cancel
Save