#2706 - Changed how Terminal Class handles its connections. Terminal now has a list of TerminalClientConnection objects that holds all active connections. Corrected a typo in ssh.py

This commit is contained in:
Charlie Crane
2024-08-01 12:34:21 +01:00
parent 5ef9e78a44
commit 19d7774440
2 changed files with 43 additions and 33 deletions

View File

@@ -22,7 +22,7 @@ class SSHTransportMessage(IntEnum):
"""Indicates User Authentication failed."""
SSH_MSG_USERAUTH_SUCCESS = 52
"""Indicates User Authentication failed was successful."""
"""Indicates User Authentication was successful."""
SSH_MSG_SERVICE_REQUEST = 24
"""Requests a service - such as executing a command."""