Browse Source

Check fragmentation by threshold check

pull/14/head
Richard Neumann 3 years ago
parent
commit
99c075c3fa
  1. 14
      rcon/source/client.py

14
rcon/source/client.py

@ -13,12 +13,11 @@ __all__ = ['Client']
class Client(BaseClient, socket_type=SOCK_STREAM): class Client(BaseClient, socket_type=SOCK_STREAM):
"""An RCON client.""" """An RCON client."""
_frag_detect: str | None = None
def __init_subclass__( def __init_subclass__(
cls, cls,
*args, *args,
frag_detect: str | None = None, frag_threshold: int = 4096,
frag_detect_cmd: str = '',
**kwargs **kwargs
): ):
"""Set an optional fragmentation command """Set an optional fragmentation command
@ -30,9 +29,8 @@ 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_subclass__(*args, **kwargs)
cls.frag_threshold = frag_threshold
if frag_detect is not None: cls.frag_detect_cmd = frag_detect_cmd
cls._frag_detect = frag_detect
def communicate(self, packet: Packet) -> Packet: def communicate(self, packet: Packet) -> Packet:
"""Send and receive a packet.""" """Send and receive a packet."""
@ -41,11 +39,11 @@ class Client(BaseClient, socket_type=SOCK_STREAM):
response = self.read() response = self.read()
if self._frag_detect is None: if len(response.payload) < self.frag_threshold:
return response return response
with self._socket.makefile('wb') as file: with self._socket.makefile('wb') as file:
file.write(bytes(Packet.make_command(self._frag_detect))) file.write(bytes(Packet.make_command(self.frag_detect_cmd)))
while (successor := self.read()).id == response.id: while (successor := self.read()).id == response.id:
response += successor response += successor

Loading…
Cancel
Save