mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-07 19:56:22 +00:00
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
namespace ServerManagerTool.Enums
|
|
{
|
|
public enum WatcherServerStatus
|
|
{
|
|
/// <summary>
|
|
/// The server binary couldnot be found.
|
|
/// </summary>
|
|
NotInstalled,
|
|
|
|
/// <summary>
|
|
/// The server binary was found, but the process was not
|
|
/// </summary>
|
|
Stopped,
|
|
|
|
/// <summary>
|
|
/// The server binary was found, the process was found, but no permissions to access the process.
|
|
/// </summary>
|
|
Unknown,
|
|
|
|
/// <summary>
|
|
/// The server process was found, but the server is not responding on its port
|
|
/// </summary>
|
|
Initializing,
|
|
|
|
/// <summary>
|
|
/// The server is responding locally on its port, a local check was made
|
|
/// </summary>
|
|
RunningLocalCheck,
|
|
|
|
/// <summary>
|
|
/// The server is responding locally on its port, a public check was made
|
|
/// </summary>
|
|
RunningExternalCheck,
|
|
|
|
/// <summary>
|
|
/// The server is responding externally on its port
|
|
/// </summary>
|
|
Published,
|
|
}
|
|
}
|