summaryrefslogtreecommitdiff
path: root/node/RuntimeEnvironment.hpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-07-11 22:06:25 -0400
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-07-11 22:06:25 -0400
commit339b2314ea168d302bae4b5f7fbf828b210e5450 (patch)
tree5ba92262bfbeacd58935f7e332557086f6be53a0 /node/RuntimeEnvironment.hpp
parentfd2b383c3e8e1a4b81454611b966c6c775c03913 (diff)
downloadinfinitytier-339b2314ea168d302bae4b5f7fbf828b210e5450.tar.gz
infinitytier-339b2314ea168d302bae4b5f7fbf828b210e5450.zip
More work in progress on Switch / PacketDecoder refactor.
Diffstat (limited to 'node/RuntimeEnvironment.hpp')
-rw-r--r--node/RuntimeEnvironment.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/node/RuntimeEnvironment.hpp b/node/RuntimeEnvironment.hpp
index a253af6e..ab19be49 100644
--- a/node/RuntimeEnvironment.hpp
+++ b/node/RuntimeEnvironment.hpp
@@ -39,6 +39,7 @@ class Demarc;
class Switch;
class Topology;
class SysEnv;
+class Multicaster;
/**
* Holds global state for an instance of ZeroTier::Node
@@ -60,6 +61,7 @@ public:
log((Logger *)0),
nc((NodeConfig *)0),
demarc((Demarc *)0),
+ multicaster((Multicaster *)0),
sw((Switch *)0),
topology((Topology *)0)
{
@@ -77,6 +79,7 @@ public:
Logger *log; // may be null
NodeConfig *nc;
Demarc *demarc;
+ Multicaster *multicaster;
Switch *sw;
Topology *topology;
SysEnv *sysEnv;