From 2587291b93d09809a45bdd2f86428dc10118b615 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Wed, 10 Aug 2022 14:29:01 +0200 Subject: [PATCH] Use range to check for valid ports --- rcon/console.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rcon/console.py b/rcon/console.py index 8c6b40b..84a7fd1 100644 --- a/rcon/console.py +++ b/rcon/console.py @@ -16,6 +16,7 @@ MSG_LOGIN_ABORTED = '\nLogin aborted. Bye.' MSG_EXIT = '\nBye.' MSG_SESSION_TIMEOUT = 'Session timed out. Please login again.' PROMPT = 'RCON {host}:{port}> ' +VALID_PORTS = range(0, 65536) def read_host() -> str: @@ -45,7 +46,7 @@ def read_port() -> int: print(f'Invalid integer: {port}') continue - if 0 <= port <= 65535: + if port in VALID_PORTS: return port print(f'Invalid port: {port}')