Move rest of NodeControl stuff out of node/ and into control/

This commit is contained in:
Adam Ierymenko 2014-09-15 16:32:55 -07:00
parent 4ba4269344
commit fb22ef053b
10 changed files with 444 additions and 289 deletions

View file

@ -66,6 +66,9 @@ class RuntimeEnvironment
{
public:
RuntimeEnvironment() :
homePath(),
identity(),
initialized(false),
shutdownInProgress(false),
tcpTunnelingEnabled(false),
timeOfLastResynchronize(0),
@ -94,6 +97,9 @@ public:
// This node's identity
Identity identity;
// Are we initialized?
volatile bool initialized;
// Indicates that we are shutting down -- this is hacky, want to factor out
volatile bool shutdownInProgress;