ZeroTierOne/node
2013-12-11 13:00:18 -08:00
..
Address.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Array.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
AtomicCounter.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
BandwidthAccount.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Buffer.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
C25519.cpp Some API improvements to C25519 in preparation for that thing I woke up thinking about at 4am. 2013-10-05 05:26:38 -04:00
C25519.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
CertificateOfMembership.cpp More tying up of certificate of membership stuff in the client. 2013-10-24 16:57:26 -04:00
CertificateOfMembership.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
CMWC4096.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Condition.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Constants.hpp Rest of software updater, ready to test... 2013-12-10 15:30:53 -08:00
Defaults.cpp Fix update URL stuff, fix main build, add update dummy for testing updates on OSX and Linux and such. 2013-12-10 16:13:07 -08:00
Defaults.hpp Rest of software updater, ready to test... 2013-12-10 15:30:53 -08:00
Demarc.cpp Clean up some stuff, including a few spots where exceptions were not being handled correctly. 2013-10-18 14:16:53 -04:00
Demarc.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Dictionary.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
EthernetTap.cpp Fix signed/unsigned compare warning. 2013-10-28 16:54:35 -04:00
EthernetTap.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
HttpClient.cpp Rest of software updater, ready to test... 2013-12-10 15:30:53 -08:00
HttpClient.hpp HTTP client works! 2013-12-06 16:00:12 -08:00
Identity.cpp And then it turns out to be too slow on a slower 32-bit machine... we do want to do tablets eventually. 2013-10-20 15:46:36 -04:00
Identity.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
InetAddress.cpp Some file format cleanup. 2013-09-17 15:46:56 -04:00
InetAddress.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Logger.cpp ZeroTierOne for Windows binary project, builds and runs and mostly works but still some issues with tap. 2013-08-26 17:22:20 -04:00
Logger.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
MAC.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Multicaster.cpp Multicast propagation is now working from non-supernodes, and working quite well. Time for some more simulation before 0.5.0! 2013-10-02 13:50:42 -04:00
Multicaster.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
MulticastGroup.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Mutex.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Network.cpp Add some more TRACE output for certs. 2013-10-25 13:43:04 -04:00
Network.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
NetworkConfig.cpp More tying up of certificate of membership stuff in the client. 2013-10-24 16:57:26 -04:00
NetworkConfig.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Node.cpp Software update work... 2013-12-11 13:00:18 -08:00
Node.hpp Rest of software updater, ready to test... 2013-12-10 15:30:53 -08:00
NodeConfig.cpp Software update work... 2013-12-11 13:00:18 -08:00
NodeConfig.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
NonCopyable.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Packet.cpp Pull in-band file transfer stuff. Toyed around with that idea, but it seems that updates for some platforms are big enough and there are enough reliability concerns that just using TCP/HTTP is safer and easier. 2013-12-04 10:45:15 -08:00
Packet.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
PacketDecoder.cpp Pull in-band file transfer stuff. Toyed around with that idea, but it seems that updates for some platforms are big enough and there are enough reliability concerns that just using TCP/HTTP is safer and easier. 2013-12-04 10:45:15 -08:00
PacketDecoder.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Peer.cpp Get rid of DBM, which technically is a case of YAGNI. Supernodes will need a way to save identities, but that can be a different feature. Regular clients do not really need a permanent cache (yet). When/if we do need one we can do it then. Until then it only caused problems. 2013-10-21 10:29:44 -04:00
Peer.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Poly1305.cpp Work in progress... 2013-09-25 10:55:27 -04:00
Poly1305.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
RuntimeEnvironment.hpp Rest of software updater, ready to test... 2013-12-10 15:30:53 -08:00
Salsa20.cpp Make Salsa20 variable-round, allowing for Salsa20/12 to be used for Packet encrypt and decrypt. Profiling analysis found that Salsa20 encrypt was accounting for a nontrivial percentage of CPU time, so it makes sense to cut this load fundamentally. There are no published attacks against Salsa20/12, and DJB believes 20 rounds to be overkill. This should be more than enough for our needs. Obviously incorporating ASM Salsa20 is among the next steps for performance. 2013-10-18 17:39:48 -04:00
Salsa20.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Service.cpp Move template parameter in Thread to a more logical scope location. 2013-08-08 09:19:36 -04:00
Service.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
SHA512.cpp Hashcash-based identity, work in progress... committing to test speed on other boxes. 2013-10-05 06:00:47 -04:00
SHA512.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
SharedPtr.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
SoftwareUpdater.cpp Rest of software updater, ready to test... 2013-12-10 15:30:53 -08:00
SoftwareUpdater.hpp Software update work... 2013-12-11 13:00:18 -08:00
Switch.cpp Certificate of membership works now... had to fix multicast propagation so COM is pushed with multicast, which makes tremendous sense in retrospect. 2013-10-25 14:51:55 -04:00
Switch.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
SysEnv.cpp Oops we needed _r in there... 2013-10-18 15:00:55 -04:00
SysEnv.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Thread.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Topology.cpp Add persistent identity caching for use on supernodes. Activate by just making an iddb.d directory in the ZeroTier home folder. Also clean up some obsolete cruft from makefiles. 2013-10-21 14:12:00 -04:00
Topology.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
UdpSocket.cpp Tap now basically sorta works on Windows. Now have to figure out how to control DHCP behavior since we normally don't want that. 2013-08-27 11:15:14 -04:00
UdpSocket.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Utils.cpp Add shutdownIfUnreadable file feature: shut down if shutdownIfUnreadable in home folder is in fact existent but unreadable (e.g. broken link). This enables nifty shutdown on .app trashing feature for OSX. 2013-11-21 16:34:27 -05:00
Utils.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00