|
@ -14,17 +14,19 @@ class BaseClient: |
|
|
|
|
|
|
|
|
def __init__( |
|
|
def __init__( |
|
|
self, host: str, port: int, *, |
|
|
self, host: str, port: int, *, |
|
|
type: SocketKind = SOCK_STREAM, |
|
|
|
|
|
timeout: Optional[float] = None, |
|
|
timeout: Optional[float] = None, |
|
|
passwd: Optional[str] = None |
|
|
passwd: Optional[str] = None |
|
|
): |
|
|
): |
|
|
"""Initializes the base client with the SOCK_STREAM socket type.""" |
|
|
"""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.host = host |
|
|
self.port = port |
|
|
self.port = port |
|
|
self.timeout = timeout |
|
|
self.timeout = timeout |
|
|
self.passwd = passwd |
|
|
self.passwd = passwd |
|
|
|
|
|
|
|
|
|
|
|
def __init_subclass__(cls, *, socket_type: SocketKind = SOCK_STREAM): |
|
|
|
|
|
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.""" |
|
|
self._socket.__enter__() |
|
|
self._socket.__enter__() |
|
|