diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-06-21 07:32:58 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-06-21 07:32:58 -0700 |
| commit | b2d048aa0e01a350eaf524cc752ca5fa9a5a1140 (patch) | |
| tree | 87c21bc63242efe25ffe4fcb1cde3ff8518046d6 /node/NetworkController.hpp | |
| parent | 3ee15e65aa14a8aa661c522c5fb183a0fdfed8b3 (diff) | |
| download | infinitytier-b2d048aa0e01a350eaf524cc752ca5fa9a5a1140.tar.gz infinitytier-b2d048aa0e01a350eaf524cc752ca5fa9a5a1140.zip | |
Make Dictionary templatable so it can be used where we want a higher capacity.
Diffstat (limited to 'node/NetworkController.hpp')
| -rw-r--r-- | node/NetworkController.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/node/NetworkController.hpp b/node/NetworkController.hpp index b91ada1b..fa90fb75 100644 --- a/node/NetworkController.hpp +++ b/node/NetworkController.hpp @@ -22,12 +22,12 @@ #include <stdint.h> #include "Constants.hpp" +#include "Dictionary.hpp" +#include "NetworkConfig.hpp" namespace ZeroTier { class RuntimeEnvironment; -class NetworkConfig; -class Dictionary; class Identity; class Address; struct InetAddress; @@ -75,7 +75,7 @@ public: const Identity &signingId, const Identity &identity, uint64_t nwid, - const Dictionary &metaData, + const Dictionary<ZT_NETWORKCONFIG_DICT_CAPACITY> &metaData, NetworkConfig &nc) = 0; }; |
