#2710 - Prep for draft PR

This commit is contained in:
Charlie Crane
2024-07-15 08:20:11 +01:00
parent dc3558bc4d
commit 2eb36149b2
5 changed files with 199 additions and 106 deletions

View File

@@ -256,7 +256,6 @@ class NetworkInterface(SimComponent, ABC):
"""
# Determine the direction of the traffic
direction = "inbound" if inbound else "outbound"
# Initialize protocol and port variables
protocol = None
port = None

View File

@@ -59,6 +59,7 @@ class SSHConnectionMessage(IntEnum):
SSH_LOGOFF_ACK = 89
"""Logoff confirmation acknowledgement"""
class SSHPacket(DataPacket):
"""Represents an SSHPacket."""