summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-08-07 14:19:50 -0400
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-08-07 14:19:50 -0400
commite98fd3dba0ddce9c8b28400dae5d5220c038da43 (patch)
tree0efce5081bad435bfe10d53e0ed9ddfd60f17f13
parentf5717f44272fcfe79f813f1f1180534e22601e85 (diff)
downloadinfinitytier-e98fd3dba0ddce9c8b28400dae5d5220c038da43.tar.gz
infinitytier-e98fd3dba0ddce9c8b28400dae5d5220c038da43.zip
Add code to automatically join Earth if no network memberships are defined.
-rw-r--r--node/NodeConfig.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/node/NodeConfig.cpp b/node/NodeConfig.cpp
index 440511e5..259c1b82 100644
--- a/node/NodeConfig.cpp
+++ b/node/NodeConfig.cpp
@@ -74,6 +74,13 @@ NodeConfig::NodeConfig(const RuntimeEnvironment *renv,const char *authToken)
}
}
+ // TODO:
+ // This might go away eventually. This causes the LAN called Earth to be
+ // automatically joined if there are no other networks. This is for backward
+ // compatibility with the expectations of previous alpha users.
+ if (nwids.empty())
+ nwids.insert(0x6c92786fee000001ULL);
+
for(std::set<uint64_t>::iterator nwid(nwids.begin());nwid!=nwids.end();++nwid) {
try {
SharedPtr<Network> nw(Network::newInstance(_r,*nwid));