summaryrefslogtreecommitdiff
path: root/service/ControlPlane.hpp
diff options
context:
space:
mode:
authorGrant Limberg <glimberg@gmail.com>2015-05-16 18:55:19 -0700
committerGrant Limberg <glimberg@gmail.com>2015-05-16 18:55:19 -0700
commit9a00366b18bc2bdb3ddf4345edcc7a459eb5ed60 (patch)
treef870c3c5c4f65fc3d7e22b3b37fb96ad6eb821f9 /service/ControlPlane.hpp
parentd0935f667fd809a32cb4184a2c422ff79dc6d933 (diff)
parent69ceb7e730a1fe4e2d0f82c7d29875bd796468ea (diff)
downloadinfinitytier-9a00366b18bc2bdb3ddf4345edcc7a459eb5ed60.tar.gz
infinitytier-9a00366b18bc2bdb3ddf4345edcc7a459eb5ed60.zip
Merge branch 'adamierymenko-dev' into android-jni
Diffstat (limited to 'service/ControlPlane.hpp')
-rw-r--r--service/ControlPlane.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/service/ControlPlane.hpp b/service/ControlPlane.hpp
index b7b0a857..fc8a0182 100644
--- a/service/ControlPlane.hpp
+++ b/service/ControlPlane.hpp
@@ -40,7 +40,7 @@ namespace ZeroTier {
class OneService;
class Node;
-class ControlPlaneSubsystem;
+class SqliteNetworkController;
struct InetAddress;
/**
@@ -72,7 +72,7 @@ public:
* @param prefix First element in URI path
* @param subsys Object to call for results of GET and POST/PUT operations
*/
- inline void mount(const char *prefix,ControlPlaneSubsystem *subsys)
+ inline void mount(const char *prefix,SqliteNetworkController *subsys)
{
Mutex::Lock _l(_lock);
_subsystems[std::string(prefix)] = subsys;
@@ -104,7 +104,7 @@ private:
Node *const _node;
std::string _uiStaticPath;
std::set<std::string> _authTokens;
- std::map<std::string,ControlPlaneSubsystem *> _subsystems;
+ std::map<std::string,SqliteNetworkController *> _subsystems;
Mutex _lock;
};