|
|
@ -7,6 +7,7 @@ from socket import timeout |
|
|
|
from sys import exit # pylint: disable=W0622 |
|
|
|
|
|
|
|
from rcon.errorhandler import ErrorHandler |
|
|
|
from rcon.exceptions import RequestIdMismatch |
|
|
|
from rcon.rconclt import get_credentials |
|
|
|
from rcon.config import CONFIG_FILE, LOG_FORMAT |
|
|
|
from rcon.console import PROMPT, rconcmd |
|
|
@ -16,7 +17,8 @@ __all__ = ['get_args', 'main'] |
|
|
|
|
|
|
|
ERRORS = ( |
|
|
|
(ConnectionRefusedError, 'Connection refused.', 3), |
|
|
|
(timeout, 'Connection timeout.', 4) |
|
|
|
(timeout, 'Connection timeout.', 4), |
|
|
|
(RequestIdMismatch, 'Unexpected request ID mismatch.', 5) |
|
|
|
) |
|
|
|
LOGGER = getLogger('rconshell') |
|
|
|
|
|
|
|