diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-10-13 12:29:01 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-10-13 12:29:01 -0700 |
commit | 71348f3ebbc84fe31d15bb0aa0f6b2b6e158cf28 (patch) | |
tree | 1f15c2550c90d7265e5e059e5ced42217b4bdb6d /world | |
parent | e268d9492a2357a324345fb94a3f03645a341876 (diff) | |
download | infinitytier-71348f3ebbc84fe31d15bb0aa0f6b2b6e158cf28.tar.gz infinitytier-71348f3ebbc84fe31d15bb0aa0f6b2b6e158cf28.zip |
docs
Diffstat (limited to 'world')
-rw-r--r-- | world/README.md | 7 | ||||
-rw-r--r-- | world/mkworld.cpp | 12 |
2 files changed, 11 insertions, 8 deletions
diff --git a/world/README.md b/world/README.md index 4e0820e6..fbd8a0ae 100644 --- a/world/README.md +++ b/world/README.md @@ -1,6 +1,9 @@ World Definitions and Generator Code ====== -This code can be used to generate a world definition. Actual generation was performed on an airgapped secure system. +This little bit of code is used to generate world updates. Ordinary users probably will never need this unless they want to test or experiment. + +See mkworld.cpp for documentation. To build from this directory: + + c++ -o mkworld ../node/C25519.cpp ../node/Salsa20.cpp ../node/SHA512.cpp ../node/Identity.cpp ../node/Utils.cpp ../node/InetAddress.cpp ../osdep/OSUtils.cpp mkworld.cpp -Ordinary users probably will not need to use this. diff --git a/world/mkworld.cpp b/world/mkworld.cpp index baf693fc..75230da4 100644 --- a/world/mkworld.cpp +++ b/world/mkworld.cpp @@ -50,12 +50,12 @@ #include <vector> #include <algorithm> -#include "node/Constants.hpp" -#include "node/World.hpp" -#include "node/C25519.hpp" -#include "node/Identity.hpp" -#include "node/InetAddress.hpp" -#include "osdep/OSUtils.hpp" +#include "../node/Constants.hpp" +#include "../node/World.hpp" +#include "../node/C25519.hpp" +#include "../node/Identity.hpp" +#include "../node/InetAddress.hpp" +#include "../osdep/OSUtils.hpp" using namespace ZeroTier; |