Turns out that node/ likely has no business with or need for the system IP routing table. So shelve that code for now.

This commit is contained in:
Adam Ierymenko 2015-03-30 17:48:48 -07:00
parent 3c1a59fa24
commit 60158aa5dd
19 changed files with 9 additions and 31 deletions

View file

@ -74,7 +74,6 @@
#include "SoftwareUpdater.hpp"
#include "Buffer.hpp"
#include "AntiRecursion.hpp"
#include "RoutingTable.hpp"
#include "HttpClient.hpp"
#include "NetworkConfigMaster.hpp"
@ -126,7 +125,6 @@ struct _NodeImpl
Node::Node(
const char *hp,
EthernetTapFactory *tf,
RoutingTable *rt,
SocketManager *sm,
NetworkConfigMaster *nm,
bool resetIdentity,
@ -140,7 +138,6 @@ Node::Node(
else impl->renv.homePath = ZT_DEFAULTS.defaultHomePath;
impl->renv.tapFactory = tf;
impl->renv.routingTable = rt;
impl->renv.sm = sm;
impl->renv.netconfMaster = nm;