mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-13 04:38:28 +00:00
Rest of software updater, ready to test...
This commit is contained in:
@ -97,9 +97,24 @@ public:
|
||||
*/
|
||||
enum ReasonForTermination
|
||||
{
|
||||
/**
|
||||
* Node is currently in run()
|
||||
*/
|
||||
NODE_RUNNING = 0,
|
||||
|
||||
/**
|
||||
* Node is shutting down for normal reasons, including a signal
|
||||
*/
|
||||
NODE_NORMAL_TERMINATION = 1,
|
||||
NODE_RESTART_FOR_RECONFIGURATION = 2,
|
||||
|
||||
/**
|
||||
* An upgrade is available. Its path is in reasonForTermination().
|
||||
*/
|
||||
NODE_RESTART_FOR_UPGRADE = 2,
|
||||
|
||||
/**
|
||||
* A serious unrecoverable error has occurred.
|
||||
*/
|
||||
NODE_UNRECOVERABLE_ERROR = 3
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user