namespace ServerManagerTool.Enums
{
public enum WatcherServerStatus
{
///
/// The server binary couldnot be found.
///
NotInstalled,
///
/// The server binary was found, but the process was not
///
Stopped,
///
/// The server binary was found, the process was found, but no permissions to access the process.
///
Unknown,
///
/// The server process was found, but the server is not responding on its port
///
Initializing,
///
/// The server is responding locally on its port, a local check was made
///
RunningLocalCheck,
///
/// The server is responding locally on its port, a public check was made
///
RunningExternalCheck,
///
/// The server is responding externally on its port
///
Published,
}
}