ZeroTierOne/node
2016-07-25 15:52:16 -07:00
..
Address.hpp Bunch more refactoring for an even more compact NetworkConfig representation, especially rules. 2016-04-26 17:11:25 -07:00
Array.hpp
AtomicCounter.hpp boring doc stuff 2016-01-12 14:04:55 -08:00
BinarySemaphore.hpp
Buffer.hpp Changes to how new-style binary network configs are detected, and a new-style binary serialized meta-data representation. 2016-05-06 13:29:10 -07:00
C25519.cpp
C25519.hpp
CertificateOfMembership.cpp NetworkConfig refactor part 1 2016-04-12 12:11:34 -07:00
CertificateOfMembership.hpp Big refactor mostly builds. We now have a uniform backward compatible netconf. 2016-06-16 12:28:43 -07:00
Cluster.cpp
Cluster.hpp
Constants.hpp
DeferredPackets.cpp Refactor incoming packet (rxQueue/fragmentQueue) to eliminate variable length queues and merge queues. This is both faster and saves memory. 2016-03-18 14:16:07 -07:00
DeferredPackets.hpp Refactor incoming packet (rxQueue/fragmentQueue) to eliminate variable length queues and merge queues. This is both faster and saves memory. 2016-03-18 14:16:07 -07:00
Dictionary.hpp Fix silly one-liner bug... retag time. 2016-06-29 18:12:35 -07:00
Filter.cpp Basic L2/L3 filter for rules engine (not integrated yet) and some cleanup. 2016-07-25 15:52:16 -07:00
Filter.hpp Basic L2/L3 filter for rules engine (not integrated yet) and some cleanup. 2016-07-25 15:52:16 -07:00
Hashtable.hpp boring doc stuff 2016-01-12 14:04:55 -08:00
Identity.cpp
Identity.hpp boring doc stuff 2016-01-12 14:04:55 -08:00
IncomingPacket.cpp move sourceAddress out of scope 2016-07-21 23:03:04 +02:00
IncomingPacket.hpp Revert backgrounding of controller requests hack. Controller code is not really parallel anyway and we fixed the perf problem. 2016-06-29 11:43:22 -07:00
InetAddress.cpp Add 6plane assignment support to network controller, and cleanup. 2016-06-24 06:40:50 -07:00
InetAddress.hpp Add 6plane assignment support to network controller, and cleanup. 2016-06-24 06:40:50 -07:00
MAC.hpp
Multicaster.cpp Fix getPeer(self) bug if I am the controller. 2016-06-28 22:49:01 +00:00
Multicaster.hpp
MulticastGroup.hpp
Mutex.hpp
Network.cpp Make Dictionary templatable so it can be used where we want a higher capacity. 2016-06-21 07:32:58 -07:00
Network.hpp Big refactor mostly builds. We now have a uniform backward compatible netconf. 2016-06-16 12:28:43 -07:00
NetworkConfig.cpp Basic L2/L3 filter for rules engine (not integrated yet) and some cleanup. 2016-07-25 15:52:16 -07:00
NetworkConfig.hpp Fix for GitHub issue #358 and bump version to 1.1.13 (dev) 2016-07-18 10:56:33 -07:00
NetworkController.hpp Make Dictionary templatable so it can be used where we want a higher capacity. 2016-06-21 07:32:58 -07:00
Node.cpp Plumbing through trusted path stuff to OneService. 2016-07-12 11:30:22 -07:00
Node.hpp Trusted path support, and version bump to 1.1.9 2016-07-12 08:29:50 -07:00
NonCopyable.hpp
OutboundMulticast.cpp
OutboundMulticast.hpp boring doc stuff 2016-01-12 14:04:55 -08:00
Packet.cpp Revise peer path weighting to always prioritize cluster-optimal paths. 2016-04-19 09:22:51 -07:00
Packet.hpp Trusted path support, and version bump to 1.1.9 2016-07-12 08:29:50 -07:00
Path.cpp Kill some old debug code. 2016-04-19 12:55:48 -07:00
Path.hpp IPv6 links are unfortunately not "reliable." Many IPv6 gateways, while not 2016-05-31 10:30:00 -07:00
Peer.cpp
Peer.hpp Cleanup in numerous places, reduce network chattiness around MULTICAST_LIKE, and fix a "how was that working" latent bug causing some control traffic to take the scenic route. 2016-04-19 12:09:35 -07:00
Poly1305.cpp
Poly1305.hpp
README.md Docs and controller API version 2016-07-08 13:10:02 -07:00
RuntimeEnvironment.hpp boring doc stuff 2016-01-12 14:04:55 -08:00
Salsa20.cpp
Salsa20.hpp
SelfAwareness.cpp
SelfAwareness.hpp
SHA512.cpp boring doc stuff 2016-01-12 14:04:55 -08:00
SHA512.hpp
SharedPtr.hpp
Switch.cpp Trusted path support, and version bump to 1.1.9 2016-07-12 08:29:50 -07:00
Switch.hpp
Topology.cpp Init trusted path count to zero. Meh. 2016-07-21 19:05:14 -07:00
Topology.hpp Trusted path support, and version bump to 1.1.9 2016-07-12 08:29:50 -07:00
Utils.cpp Big refactor mostly builds. We now have a uniform backward compatible netconf. 2016-06-16 12:28:43 -07:00
Utils.hpp Big refactor mostly builds. We now have a uniform backward compatible netconf. 2016-06-16 12:28:43 -07:00
World.hpp

ZeroTier Virtual Switch 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.