Browse Source

Add optional timeout to RCON shell

pull/20/head 2.3.9
Richard Neumann 2 years ago
parent
commit
7e78a784ba
  1. 3
      rcon/console.py
  2. 13
      rcon/rconshell.py

3
rcon/console.py

@ -140,6 +140,7 @@ def rconcmd(
port: int,
passwd: str,
*,
timeout: float | None = None,
prompt: str = PROMPT
):
"""Initialize the console."""
@ -152,7 +153,7 @@ def rconcmd(
prompt = prompt.format(host=host, port=port)
with client_cls(host, port) as client:
with client_cls(host, port, timeout=timeout) as client:
try:
passwd = login(client, passwd)
except EOFError:

13
rcon/rconshell.py

@ -34,6 +34,10 @@ def get_args() -> Namespace:
'-p', '--prompt', default=PROMPT, metavar='PS1',
help='the shell prompt'
)
parser.add_argument(
'-t', '--timeout', type=float, metavar='seconds',
help='connection timeout in seconds'
)
return parser.parse_args()
@ -50,7 +54,14 @@ def run() -> None:
host = port = passwd = None
with CommandHistory(LOGGER):
rconcmd(client_cls, host, port, passwd, prompt=args.prompt)
rconcmd(
client_cls,
host,
port,
passwd,
timeout=args.timeout,
prompt=args.prompt
)
def main() -> int:

Loading…
Cancel
Save