summaryrefslogtreecommitdiff
path: root/node/Node.cpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-07-27 13:36:27 -0400
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-07-27 13:36:27 -0400
commitb0a83093ce698390a4e2d266ba1c63ee241cd7ad (patch)
tree5b7d2f15e65c14d9ff220f19b2ee9f728757b2be /node/Node.cpp
parent57d8730f1b3da3f9fe23a9fa02c8557b80bf6716 (diff)
downloadinfinitytier-b0a83093ce698390a4e2d266ba1c63ee241cd7ad.tar.gz
infinitytier-b0a83093ce698390a4e2d266ba1c63ee241cd7ad.zip
Back out of RPC... blech. Have a better idea.
Diffstat (limited to 'node/Node.cpp')
-rw-r--r--node/Node.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/node/Node.cpp b/node/Node.cpp
index b5c23ed9..08b08fc1 100644
--- a/node/Node.cpp
+++ b/node/Node.cpp
@@ -68,7 +68,6 @@
#include "Mutex.hpp"
#include "Multicaster.hpp"
#include "CMWC4096.hpp"
-#include "RPC.hpp"
#include "../version.h"
@@ -211,7 +210,6 @@ Node::~Node()
{
_NodeImpl *impl = (_NodeImpl *)_impl;
- delete impl->renv.rpc;
delete impl->renv.sysEnv;
delete impl->renv.topology;
delete impl->renv.sw;
@@ -317,7 +315,6 @@ Node::ReasonForTermination Node::run()
_r->sw = new Switch(_r);
_r->topology = new Topology(_r,(_r->homePath + ZT_PATH_SEPARATOR_S + "peer.db").c_str());
_r->sysEnv = new SysEnv(_r);
- _r->rpc = new RPC(_r);
// TODO: make configurable
bool boundPort = false;
@@ -342,25 +339,6 @@ Node::ReasonForTermination Node::run()
}
try {
- std::map<std::string,bool> pluginsd(Utils::listDirectory((_r->homePath + ZT_PATH_SEPARATOR_S + "plugins.d").c_str()));
- for(std::map<std::string,bool>::iterator ppath(pluginsd.begin());ppath!=pluginsd.end();++ppath) {
- if (!ppath->second) {
- try {
- std::string funcName(ppath->first.substr(0,ppath->first.rfind('.')));
- LOG("loading plugins.d/%s as RPC function %s",ppath->first.c_str(),funcName.c_str());
- _r->rpc->loadLocal(funcName.c_str(),(_r->homePath + ZT_PATH_SEPARATOR_S + "plugins.d" + ZT_PATH_SEPARATOR_S + ppath->first).c_str());
- } catch (std::exception &exc) {
- LOG("failed to load plugin plugins.d/%s: %s",ppath->first.c_str(),exc.what());
- } catch ( ... ) {
- LOG("failed to load plugin plugins.d/%s: (unknown exception)",ppath->first.c_str());
- }
- }
- }
- } catch ( ... ) {
- TRACE("unknown exception attempting to enumerate and load plugins");
- }
-
- try {
uint64_t lastPingCheck = 0;
uint64_t lastTopologyClean = Utils::now(); // don't need to do this immediately
uint64_t lastNetworkFingerprintCheck = 0;