summaryrefslogtreecommitdiff
path: root/node/Topology.hpp
AgeCommit message (Collapse)Author
2016-01-12boring doc stuffAdam Ierymenko
2015-11-14get the compiler to stop complaining about two string literals (one a macro) ↵Grant Limberg
next to each other without an intervening space

2015-11-13Fix: (1) Windows stack overflow due to buffer too large in peer deserialize, ↵Adam Ierymenko
(2) clean up some other stuff seen during debugging and reduce the sizes of some buffers due to Windows small stack size, (3) remove a redundant try/catch.
2015-11-05Make cluster HAVE_PEER a little lighter by removing full identity. ↵Adam Ierymenko
Technically this is not necessary and they will propagate over time in any case. Might restore it in some form in the future.
2015-11-02Tweak some more timings for better reliability.Adam Ierymenko
2015-10-30Fix evil bug, and instrument/assert on some other stuff, and a bit of cleanup.Adam Ierymenko
2015-10-30Null pointer bug appears fixed... testing again at large scale.Adam Ierymenko
2015-10-30.Adam Ierymenko
2015-10-30.Adam Ierymenko
2015-10-30Add some debug code in TRACE mode to catch a bug.Adam Ierymenko
2015-10-30getPeer() had a small potential to be unsafe.Adam Ierymenko
2015-10-28Fix bug in peer count.Adam Ierymenko
2015-10-27Use getPeerNoCache() in Cluster to avoid keeping all peers cached everywhere.Adam Ierymenko
2015-10-26Cluster status plumbing.Adam Ierymenko
2015-10-23Fix bug in setWorld that might have caused a peer entry for myself (which ↵Adam Ierymenko
would never be used)
2015-10-19Do not allow VERB_RENDEZVOUS from non-upstream peers to block potential DOS ↵Adam Ierymenko
vector.
2015-10-14Work in progress on Cluster for new root infrastructure, multi-homing.Adam Ierymenko
2015-10-13World stuff...Adam Ierymenko
2015-10-13More World stuff, and mkworld.Adam Ierymenko
2015-10-12Work in progress on refactoring root-topology into World and adding in-band ↵Adam Ierymenko
updates.
2015-10-01The return of peer peristence.Adam Ierymenko
2015-09-04Swap out std::map<> for Hashtable<> for main peer database in Topology. ↵Adam Ierymenko
(ongoing std::map-ectomy)
2015-07-27Push remote surface as reported by peers along with known interface direct ↵Adam Ierymenko
paths to assist with (some) NAT traversal. (trying this, may back out if not effective)
2015-06-19Root server terminology cleanup, and tighten up a security check by checking ↵Adam Ierymenko
full identity of peers instead of just address.
2015-05-06Renamed supernode to rootserverKees Bos
2015-06-01Kill obsolete amSupernode method -- we now have no differing behaviors.Adam Ierymenko
2015-04-08Node peer list function for CAPI, and some Peer cleanup.Adam Ierymenko
2015-04-08Make Toplogy use dataStoreXX() methods from Node, and get rid of old TCP stuff.Adam Ierymenko
2015-04-07Tons of refactoring, change to desperation algorithm to use max of core or ↵Adam Ierymenko
link, porting over core loop code from old Node.cpp to new CAPI version, etc.
2015-04-07Implemented empirical determination of external addressing, paritioned per ↵Adam Ierymenko
scope.
2015-04-06Add code to check external surface against reported surface from other ↵Adam Ierymenko
trusted peers, and also rename ExternalSurface to SelfAwareness because lulz.
2015-04-03Send path simplification.Adam Ierymenko
2015-04-02The concept of link desperation (escalating to less desirable transports) ↵Adam Ierymenko
simplifies a ton of stuff. Loads of spaghetti logic can die since we no longer have to make these decisions down in the core.
2015-02-17Re-incorporation: ZeroTier Networks -> ZeroTier, Inc. [Delaware]Adam Ierymenko
2015-02-02Ping supernodes on surface change, and also reset TCP flag.Adam Ierymenko
2015-02-02Surface logic in Topology.Adam Ierymenko
2015-02-02Code to track externally visible address surface.Adam Ierymenko
2015-01-05Cleanup, add tristate to config code in Network, and happy new year!Adam Ierymenko
2014-10-19Windows build fixes.Adam Ierymenko
2014-10-14Make several changes to eliminate potential deadlock or recursive lock ↵Adam Ierymenko
conditions, and add back rescan of multicast groups on network startup.
2014-10-13Permanently retire peers.persist, but make iddb.d always enabled instead ↵Adam Ierymenko
since identities are what we really want to cache.
2014-10-01Some cleanup, Multicaster now sends multicasts as it gets additional members.Adam Ierymenko
2014-09-24Rename the ubiquitous _r pointer to RuntimeEnvironment to RR just to be a ↵Adam Ierymenko
little more consistent about using _ to denote private member variables.
2014-09-17More work on control bus refactor...Adam Ierymenko
2014-09-12Refactoring in progress... pardon our dust...Adam Ierymenko
2014-09-05Rip out dead "firewall opener" code, replace in pipeline with ↵Adam Ierymenko
anti-symmetric-NAT tactics.
2014-08-14(1) distribute default root-topology in new dictionary format, (2) bump peer ↵Adam Ierymenko
serialization version to force obsolescence of old supernodes, (3) stop outputting a log message every time we poll for software updates
2014-08-14Accept supernode dictionaries in Topology, also fix (unused) field name in ↵Adam Ierymenko
one of these.
2014-08-05(1) Disable firewall openers (its easy to re-enable), (2) Do some prep work ↵Adam Ierymenko
for making supernode topology hot-updatable.
2014-06-30Keep track of basic aliveness for peers regardless if direct or indirect ↵Adam Ierymenko
connectivity and use this for multicast propagation. Also consolidate adding of active bridges via the same functor as regular multicast next hops.