diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-04-15 15:12:09 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-04-15 15:12:09 -0700 |
| commit | 6369c264e2b54f7eb65a9f0f071ef7599ec7b20a (patch) | |
| tree | b2570a21eb6d02040256d8a84855361da8c19e75 /node/RuntimeEnvironment.hpp | |
| parent | 871473255b7b0c5ad6507f0fe62ca6998a41f678 (diff) | |
| download | infinitytier-6369c264e2b54f7eb65a9f0f071ef7599ec7b20a.tar.gz infinitytier-6369c264e2b54f7eb65a9f0f071ef7599ec7b20a.zip | |
Rename netconf to controller and NetworkConfigMaster to NetworkController for consistency.
Diffstat (limited to 'node/RuntimeEnvironment.hpp')
| -rw-r--r-- | node/RuntimeEnvironment.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/node/RuntimeEnvironment.hpp b/node/RuntimeEnvironment.hpp index 6bb8c3cf..228040e7 100644 --- a/node/RuntimeEnvironment.hpp +++ b/node/RuntimeEnvironment.hpp @@ -42,7 +42,7 @@ class CMWC4096; class Node; class Multicaster; class AntiRecursion; -class NetworkConfigMaster; +class NetworkController; class SelfAwareness; /** @@ -54,7 +54,7 @@ public: RuntimeEnvironment(Node *n) : node(n), identity(), - netconfMaster((NetworkConfigMaster *)0), + localNetworkController((NetworkController *)0), prng((CMWC4096 *)0), sw((Switch *)0), mc((Multicaster *)0), @@ -72,8 +72,8 @@ public: std::string publicIdentityStr; std::string secretIdentityStr; - // This is set externally to an instance of this base class if netconf functionality is enabled - NetworkConfigMaster *netconfMaster; + // This is set externally to an instance of this base class + NetworkController *localNetworkController; /* * Order matters a bit here. These are constructed in this order |
