diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-04-30 16:03:44 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-04-30 16:03:44 -0700 |
| commit | 9a34fde8a51f9218d4062336dddbb42fe19b6764 (patch) | |
| tree | 08f0347e89cb0d481469aa23068fd7eff9d0432d /node/Node.hpp | |
| parent | 918fc8884b142452e350ff32beb90b34bbd442c1 (diff) | |
| download | infinitytier-9a34fde8a51f9218d4062336dddbb42fe19b6764.tar.gz infinitytier-9a34fde8a51f9218d4062336dddbb42fe19b6764.zip | |
Make sure identity.public exists and stays in sync, cleanup extra new in Node, and test script for local testnets.
Diffstat (limited to 'node/Node.hpp')
| -rw-r--r-- | node/Node.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/node/Node.hpp b/node/Node.hpp index 396e04c0..70531bf8 100644 --- a/node/Node.hpp +++ b/node/Node.hpp @@ -38,6 +38,7 @@ #include "../include/ZeroTierOne.h" +#include "RuntimeEnvironment.hpp" #include "InetAddress.hpp" #include "Mutex.hpp" #include "MAC.hpp" @@ -52,8 +53,6 @@ namespace ZeroTier { -class RuntimeEnvironment; - /** * Implementation of Node object as defined in CAPI * @@ -229,6 +228,7 @@ public: #endif private: + RuntimeEnvironment _RR; RuntimeEnvironment *RR; void *_uPtr; // _uptr (lower case) is reserved in Visual Studio :P |
