#1706 - Applied some final changes from PR. Fixed the PCAP log name on SwitchPort so that a pcap file is generated for each port.

This commit is contained in:
Chris McCarthy
2023-08-10 13:26:51 +01:00
parent ad81a81949
commit 9ee0ef2fd6
8 changed files with 35 additions and 24 deletions

View File

@@ -8,17 +8,17 @@ from primaite.simulator.system.software import IOSoftware
class ServiceOperatingState(Enum):
"""Enumeration of Service Operating States."""
STOPPED = 0
"The service is not running."
RUNNING = 1
"The service is currently running."
RESTARTING = 2
"The service is in the process of restarting."
STOPPED = 2
"The service is not running."
INSTALLING = 3
"The service is being installed or updated."
PAUSED = 4
RESTARTING = 4
"The service is in the process of restarting."
PAUSED = 5
"The service is temporarily paused."
DISABLED = 5
DISABLED = 6
"The service is disabled and cannot be started."