Browse Source

Make socket_type optional

pull/8/head
Richard Neumann 3 years ago
parent
commit
26981173c0
  1. 7
      rcon/client.py
  2. 4
      rcon/source/client.py

7
rcon/client.py

@ -1,6 +1,6 @@
"""Common base client.""" """Common base client."""
from socket import SOCK_STREAM, SocketKind, socket from socket import SocketKind, socket
from typing import Optional from typing import Optional
@ -22,8 +22,9 @@ class BaseClient:
self.timeout = timeout self.timeout = timeout
self.passwd = passwd self.passwd = passwd
def __init_subclass__(cls, *, socket_type: SocketKind = SOCK_STREAM): def __init_subclass__(cls, *, socket_type: SocketKind | None = None):
cls._socket_type = socket_type if socket_type is not None:
cls._socket_type = socket_type
def __enter__(self): def __enter__(self):
"""Attempts an auto-login if a password is set.""" """Attempts an auto-login if a password is set."""

4
rcon/source/client.py

@ -1,5 +1,7 @@
"""Synchronous client.""" """Synchronous client."""
from socket import SOCK_STREAM
from rcon.client import BaseClient from rcon.client import BaseClient
from rcon.exceptions import SessionTimeout, WrongPassword from rcon.exceptions import SessionTimeout, WrongPassword
from rcon.source.proto import Packet, Type from rcon.source.proto import Packet, Type
@ -8,7 +10,7 @@ from rcon.source.proto import Packet, Type
__all__ = ['Client'] __all__ = ['Client']
class Client(BaseClient): class Client(BaseClient, socket_type=SOCK_STREAM):
"""An RCON client.""" """An RCON client."""
def communicate(self, packet: Packet) -> Packet: def communicate(self, packet: Packet) -> Packet:

Loading…
Cancel
Save