You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Adam Ierymenko 90872c906f Fix FileDB stuff and latency measurement. 7 years ago
..
Address.hpp Replace certificate based gating of multicast like/gather with a simpler more efficient method, fix some minor issues with request based com/cert push, and clean up some other random stuff. 7 years ago
AtomicCounter.hpp Updated licenses for 2019 7 years ago
Buffer.hpp Get rid of ZT_FAST_MEMCPY because this is not really needed. 7 years ago
C25519.cpp Drop in faster C25519 agreement code. 7 years ago
C25519.hpp Updated licenses for 2019 7 years ago
Capability.cpp Updated licenses for 2019 7 years ago
Capability.hpp Various other fixes including removal of more mem*() issues and netlink fixes for AARCH64. 7 years ago
CertificateOfMembership.cpp Updated licenses for 2019 7 years ago
CertificateOfMembership.hpp Cleanup 7 years ago
CertificateOfOwnership.cpp Updated licenses for 2019 7 years ago
CertificateOfOwnership.hpp Fix valgrind warning... not sure if it is an actual issue. 7 years ago
Constants.hpp Tighten up credential push just a bit for faster up-time with older nodes, should not have significant impact on bandwidth. Also some cleanup and push direct path timing fixes. 7 years ago
Credential.hpp Updated licenses for 2019 7 years ago
Dictionary.hpp Updated licenses for 2019 7 years ago
Hashtable.hpp Updated licenses for 2019 7 years ago
Identity.cpp Updated licenses for 2019 7 years ago
Identity.hpp Get rid of ZT_FAST_MEMCPY because this is not really needed. 7 years ago
IncomingPacket.cpp Fix FileDB stuff and latency measurement. 7 years ago
IncomingPacket.hpp Updated licenses for 2019 7 years ago
InetAddress.cpp Tighten up credential push just a bit for faster up-time with older nodes, should not have significant impact on bandwidth. Also some cleanup and push direct path timing fixes. 7 years ago
InetAddress.hpp Get rid of ZT_FAST_MEMCPY because this is not really needed. 7 years ago
MAC.hpp Updated licenses for 2019 7 years ago
Membership.cpp Tighten up credential push just a bit for faster up-time with older nodes, should not have significant impact on bandwidth. Also some cleanup and push direct path timing fixes. 7 years ago
Membership.hpp Tighten up credential push just a bit for faster up-time with older nodes, should not have significant impact on bandwidth. Also some cleanup and push direct path timing fixes. 7 years ago
MulticastGroup.hpp Updated licenses for 2019 7 years ago
Multicaster.cpp Clean out some unnecessarily pedantic auth stuff in favor of a simpler way of gating multicast gathers. 7 years ago
Multicaster.hpp Clean out some unnecessarily pedantic auth stuff in favor of a simpler way of gating multicast gathers. 7 years ago
Mutex.hpp Updated licenses for 2019 7 years ago
Network.cpp Fix valgrind warning... not sure if it is an actual issue. 7 years ago
Network.hpp Tighten up credential push just a bit for faster up-time with older nodes, should not have significant impact on bandwidth. Also some cleanup and push direct path timing fixes. 7 years ago
NetworkConfig.cpp Various other fixes including removal of more mem*() issues and netlink fixes for AARCH64. 7 years ago
NetworkConfig.hpp Fixed ZT_SDK build issue. Moved ZT_SDK preprocessor directives to more permanent homes 7 years ago
NetworkController.hpp Updated licenses for 2019 7 years ago
Node.cpp Compiler warning cleanup 7 years ago
Node.hpp . 7 years ago
OutboundMulticast.cpp Tighten up credential push just a bit for faster up-time with older nodes, should not have significant impact on bandwidth. Also some cleanup and push direct path timing fixes. 7 years ago
OutboundMulticast.hpp More stack->heap 7 years ago
Packet.cpp Get rid of ZT_FAST_MEMCPY because this is not really needed. 7 years ago
Packet.hpp Cleanup, version bump. 7 years ago
Path.cpp Updated licenses for 2019 7 years ago
Path.hpp Merge branch 'dev' of http://git.int.zerotier.com/ZeroTier/ZeroTierOne into dev 7 years ago
Peer.cpp Tighten up credential push just a bit for faster up-time with older nodes, should not have significant impact on bandwidth. Also some cleanup and push direct path timing fixes. 7 years ago
Peer.hpp Bump protocol version to 10 7 years ago
Poly1305.cpp RingBuffer<> is now templated with size, buffer is now static. 7 years ago
Poly1305.hpp Updated licenses for 2019 7 years ago
README.md Actual documentation. 9 years ago
Revocation.cpp Updated licenses for 2019 7 years ago
Revocation.hpp ... 7 years ago
RingBuffer.hpp Compiler warning cleanup 7 years ago
RuntimeEnvironment.hpp Updated licenses for 2019 7 years ago
SHA512.cpp Use X64 ASM ed25519 signatures on Linux/x64, which are about 10X faster. Will matter a lot for network controllers, not so much for other things. 8 years ago
SHA512.hpp Updated licenses for 2019 7 years ago
Salsa20.cpp Spellcheck sweep across codebase 8 years ago
Salsa20.hpp Another very small crypto optimization. 9 years ago
SelfAwareness.cpp Cleanup, version bump. 7 years ago
SelfAwareness.hpp Cleanup, version bump. 7 years ago
SharedPtr.hpp Updated licenses for 2019 7 years ago
Switch.cpp Tighten up credential push just a bit for faster up-time with older nodes, should not have significant impact on bandwidth. Also some cleanup and push direct path timing fixes. 7 years ago
Switch.hpp Updated licenses for 2019 7 years ago
Tag.cpp Updated licenses for 2019 7 years ago
Tag.hpp Various other fixes including removal of more mem*() issues and netlink fixes for AARCH64. 7 years ago
Topology.cpp Updated licenses for 2019 7 years ago
Topology.hpp Updated licenses for 2019 7 years ago
Trace.cpp Updated licenses for 2019 7 years ago
Trace.hpp Updated licenses for 2019 7 years ago
Utils.cpp Updated licenses for 2019 7 years ago
Utils.hpp Get rid of ZT_FAST_MEMCPY because this is not really needed. 7 years ago
World.hpp Get rid of ZT_FAST_MEMCPY because this is not really needed. 7 years ago

README.md

ZeroTier Network Hypervisor Core

This directory contains the real ZeroTier: a completely OS-independent global virtual Ethernet switch engine. This is where the magic happens.

Give it wire packets and it gives you Ethernet packets, and vice versa. The core contains absolutely no actual I/O, port configuration, or other OS-specific code (except Utils::getSecureRandom()). It provides a simple C API via /include/ZeroTierOne.h. It's designed to be small and maximally portable for future use on small embedded and special purpose systems.

Code in here follows these guidelines:

  • Keep it minimal, especially in terms of code footprint and memory use.
  • There should be no OS-dependent code here unless absolutely necessary (e.g. getSecureRandom).
  • If it's not part of the core virtual Ethernet switch it does not belong here.
  • No C++11 or C++14 since older and embedded compilers don't support it yet and this should be maximally portable.
  • Minimize the use of complex C++ features since at some point we might end up "minus-minus'ing" this code if doing so proves necessary to port to tiny embedded systems.