mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-06 12:33:44 +02:00
docs
This commit is contained in:
parent
e268d9492a
commit
71348f3ebb
2 changed files with 11 additions and 8 deletions
|
@ -1,6 +1,9 @@
|
||||||
World Definitions and Generator Code
|
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.
|
|
||||||
|
|
|
@ -50,12 +50,12 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
|
||||||
#include "node/Constants.hpp"
|
#include "../node/Constants.hpp"
|
||||||
#include "node/World.hpp"
|
#include "../node/World.hpp"
|
||||||
#include "node/C25519.hpp"
|
#include "../node/C25519.hpp"
|
||||||
#include "node/Identity.hpp"
|
#include "../node/Identity.hpp"
|
||||||
#include "node/InetAddress.hpp"
|
#include "../node/InetAddress.hpp"
|
||||||
#include "osdep/OSUtils.hpp"
|
#include "../osdep/OSUtils.hpp"
|
||||||
|
|
||||||
using namespace ZeroTier;
|
using namespace ZeroTier;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue