Browse Source

Fix socket type initialization

pull/8/head
Richard Neumann 3 years ago
parent
commit
2931d6d784
  1. 3
      rcon/battleye/client.py
  2. 6
      rcon/client.py

3
rcon/battleye/client.py

@ -1,6 +1,7 @@
"""BattlEye RCon client."""
from ipaddress import IPv4Address
from socket import SOCK_DGRAM
from typing import Union
from rcon.battleye.proto import Command, LoginRequest
@ -13,7 +14,7 @@ __all__ = ['Client']
Host = Union[str, IPv4Address]
class Client(BaseClient):
class Client(BaseClient, socket_type=SOCK_DGRAM):
"""BattlEye RCon client."""
def communicate(self, data: bytes, *, recv: int = 4096) -> bytes:

6
rcon/client.py

@ -14,17 +14,19 @@ class BaseClient:
def __init__(
self, host: str, port: int, *,
type: SocketKind = SOCK_STREAM,
timeout: Optional[float] = None,
passwd: Optional[str] = None
):
"""Initializes the base client with the SOCK_STREAM socket type."""
self._socket = socket(type=type)
self._socket = socket(type=self._socket_type)
self.host = host
self.port = port
self.timeout = timeout
self.passwd = passwd
def __init_subclass__(cls, *, socket_type: SocketKind = SOCK_STREAM):
cls._socket_type = socket_type
def __enter__(self):
"""Attempts an auto-login if a password is set."""
self._socket.__enter__()

Loading…
Cancel
Save