..
Address.hpp
Bug fixes: inverted sense bug, printf format bug.
13 years ago
Array.hpp
Windows compiles! (w/Visual Studio 2012) That's about all it does, but it's a start.
13 years ago
AtomicCounter.hpp
New git repository for release - version 0.2.0 tagged
13 years ago
BandwidthAccount.hpp
More experimentation with multicast rate.
13 years ago
Buffer.hpp
Clean up some stuff, including a few spots where exceptions were not being handled correctly.
13 years ago
C25519.cpp
Some API improvements to C25519 in preparation for that thing I woke up thinking about at 4am.
13 years ago
C25519.hpp
Hashcash-based identity, work in progress... committing to test speed on other boxes.
13 years ago
CMWC4096.hpp
Compile fixes, integration of fast PRNG.
13 years ago
CertificateOfMembership.cpp
Lots of cleanup, more work on certificates, some security fixes.
13 years ago
CertificateOfMembership.hpp
Work in progress...
13 years ago
Condition.hpp
Windows build work: condition, mutex, thread, udp socket...
13 years ago
Constants.hpp
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.
13 years ago
Defaults.cpp
Blech... moving on!
13 years ago
Defaults.hpp
Clean up some stuff, including a few spots where exceptions were not being handled correctly.
13 years ago
Demarc.cpp
Clean up some stuff, including a few spots where exceptions were not being handled correctly.
13 years ago
Demarc.hpp
Clean up some stuff, including a few spots where exceptions were not being handled correctly.
13 years ago
Dictionary.hpp
Some file format cleanup.
13 years ago
EthernetTap.cpp
Improve code security posture by replacing sprintf with a safer function.
13 years ago
EthernetTap.hpp
More tap work -- DHCP configuration and such.
13 years ago
Identity.cpp
And then it turns out to be too slow on a slower 32-bit machine... we do want to do tablets eventually.
13 years ago
Identity.hpp
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.
13 years ago
InetAddress.cpp
Some file format cleanup.
13 years ago
InetAddress.hpp
Each peer now tracks the last time it announced multicast LIKEs independently and does so frequently enough to prevent expires. Also add a multicast debug facility for use on the testnet.
13 years ago
Logger.cpp
ZeroTierOne for Windows binary project, builds and runs and mostly works but still some issues with tap.
13 years ago
Logger.hpp
More include formatting cleanup.
13 years ago
MAC.hpp
Bug fixes: inverted sense bug, printf format bug.
13 years ago
MulticastGroup.hpp
More work in netconf cleanup.
13 years ago
Multicaster.cpp
Multicast propagation is now working from non-supernodes, and working quite well. Time for some more simulation before 0.5.0!
13 years ago
Multicaster.hpp
Multicast propagation is now working from non-supernodes, and working quite well. Time for some more simulation before 0.5.0!
13 years ago
Mutex.hpp
Windows build work: condition, mutex, thread, udp socket...
13 years ago
Network.cpp
Peers are now dumped on shutdown in a persistence cache and reloaded on startup, which is good enough for clients right now. Supernodes will get something else for long-term authoritative identity caching.
13 years ago
Network.hpp
Work in progress...
13 years ago
NetworkConfig.cpp
Forgot to set defaults if multicast parameters are unset.
13 years ago
NetworkConfig.hpp
Clean up the awful Network::Config mess and break that out into NetworkConfig.
13 years ago
Node.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.
13 years ago
Node.hpp
Add port and control port command line options to daemon and command line client, add new supernode keys to Defaults.
13 years ago
NodeConfig.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.
13 years ago
NodeConfig.hpp
Clean up some stuff, including a few spots where exceptions were not being handled correctly.
13 years ago
NonCopyable.hpp
New git repository for release - version 0.2.0 tagged
13 years ago
Packet.cpp
Take the 0.6.0 opportunity to add flags to a few protocol verbs and do a bit more cleanup. Also fix it so certificates wont be accepted unless they are newer than existing ones.
13 years ago
Packet.hpp
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.
13 years ago
PacketDecoder.cpp
Version 0.6.1: minor bug fix, DBM removal
13 years ago
PacketDecoder.hpp
Clean up some stuff, including a few spots where exceptions were not being handled correctly.
13 years ago
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.
13 years ago
Peer.hpp
Peers are now dumped on shutdown in a persistence cache and reloaded on startup, which is good enough for clients right now. Supernodes will get something else for long-term authoritative identity caching.
13 years ago
Poly1305.cpp
Work in progress...
13 years ago
Poly1305.hpp
Test vectors for all new crypto.
13 years ago
RuntimeEnvironment.hpp
More work in progress in new multicast propagation...
13 years ago
SHA512.cpp
Hashcash-based identity, work in progress... committing to test speed on other boxes.
13 years ago
SHA512.hpp
Add new crypto: SHA512 and C25519 -- not integrated yet.
13 years ago
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.
13 years ago
Salsa20.hpp
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.
13 years ago
Service.cpp
Move template parameter in Thread to a more logical scope location.
13 years ago
Service.hpp
Move template parameter in Thread to a more logical scope location.
13 years ago
SharedPtr.hpp
Windows compiles! (w/Visual Studio 2012) That's about all it does, but it's a start.
13 years ago
Switch.cpp
Clean up the awful Network::Config mess and break that out into NetworkConfig.
13 years ago
Switch.hpp
Get rid of not used and maybe never to be used Filter code.
13 years ago
SysEnv.cpp
Oops we needed _r in there...
13 years ago
SysEnv.hpp
Oops we needed _r in there...
13 years ago
Thread.hpp
Windows build work: condition, mutex, thread, udp socket...
13 years ago
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.
13 years ago
Topology.hpp
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.
13 years ago
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.
13 years ago
UdpSocket.hpp
ZeroTierOne for Windows binary project, builds and runs and mostly works but still some issues with tap.
13 years ago
Utils.cpp
Rest of work on new hashcash based identity scheme.
13 years ago
Utils.hpp
Rest of work on new hashcash based identity scheme.
13 years ago