mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
Server Monitor Changes
- added sequential checkbox and slider (not implemented up yet) - added separate mod only update option. - added a cancel process option. - a lot of changes with the process methods - consoladated stop/shutdown and start/restart. - removed the server accessable flag, will now just keep counting down if server unable to be contacted. - added a retry to the RCON command sending - set to 3, with a 10 sec delay.
This commit is contained in:
parent
f42da44940
commit
1d6907a471
22 changed files with 966 additions and 848 deletions
13
src/ConanServerManager/Enums/ServerUpdateType.cs
Normal file
13
src/ConanServerManager/Enums/ServerUpdateType.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
using System;
|
||||
|
||||
namespace ServerManagerTool.Enums
|
||||
{
|
||||
[Flags]
|
||||
public enum ServerUpdateType
|
||||
{
|
||||
None = 0,
|
||||
Server = 1,
|
||||
Mods = 2,
|
||||
ServerAndMods = Server | Mods,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue