summaryrefslogtreecommitdiff
path: root/node
AgeCommit message (Collapse)Author
2015-01-06C++ netconf master Redis plumbing.Adam Ierymenko
2015-01-05Add timestamp field to network config requests.Adam Ierymenko
2015-01-05Cleanup, add tristate to config code in Network, and happy new year!Adam Ierymenko
2015-01-05docsAdam Ierymenko
2015-01-05Back out service message type -- YAGNI violation.Adam Ierymenko
2015-01-05Strip out old Service code, add new service message type.Adam Ierymenko
2014-12-19FreeBSD works, and some documentation fixes.Adam Ierymenko
2014-12-16locallyValidate() is expensive -- stop doing it on every HELLO since in most ↵Adam Ierymenko
cases we already know the identity and know it is valid
2014-12-02Windows Visual Studio meaningless-warning-ectomy.Adam Ierymenko
2014-12-02Fix network enumeration buffer size bug -- reported by user Neal Symms via ↵Adam Ierymenko
LiveAgent
2014-11-26docsAdam Ierymenko
2014-11-26Remove more legacy code -- just doing the supernode redist for old multicast ↵Adam Ierymenko
is now good enough given the small number of legacy nodes left.
2014-11-26cleanup and docsAdam Ierymenko
2014-11-26docs and cleanupAdam Ierymenko
2014-11-25Enable legacy multicast in Constants.Adam Ierymenko
2014-11-25Add ZT_SUPPORT_LEGACY_MULTICAST ifdef to enable the legacy code to all be ↵Adam Ierymenko
toggled.
2014-11-24Re-enable legacy multicast distribution -- still too many pre1.0.0 nodes online.Adam Ierymenko
2014-11-24Multicast code cleanup.Adam Ierymenko
2014-11-23A few more tweaks to MC algo...Adam Ierymenko
2014-11-21Add a bunch of high-resolution try/catch safety in Node main loop to attempt ↵Adam Ierymenko
to snare gremlin.
2014-11-21Fix thinko in multicast changes... works now!Adam Ierymenko
2014-11-21Send multicasts in random order.Adam Ierymenko
This should not affect most users, but on large networks it should cause service announcements to work a lot better. This is the result of a prolonged discussion with a user about the visibility of game servers on a large network. The old multicast algorithm was de-facto randomized due to its distributed nature, while the new algorithm is more deterministic. This will restore some randomization beyond limit-overflow conditions. It won't affect small networks at all.
2014-11-20Tweak to symmetric NAT buster to add one to the number of ports above the ↵Adam Ierymenko
current one it attempts.
2014-11-20Change path selection logic to exclude non-fixed and non-active paths -- ↵Adam Ierymenko
possible fix for "NAT traversal coma" issue. Also fix a typo.
2014-11-13Optimization: we don't need to verify signatures on certs if they're certs ↵Adam Ierymenko
we already have and have verified.
2014-11-13Prevent "software laser" in legacy multicast support. Already hotpatched in ↵Adam Ierymenko
supernodes.
2014-11-04Make selftest build and run on FreeBSD 10 with gmakeAdam Ierymenko
2014-10-29Back off default multicast limit just a little.Adam Ierymenko
2014-10-29More cleanup, and fix a bug in Multicaster::gather()Adam Ierymenko
2014-10-29Moderate efficiency improvement on multicast gather result parsing, and go ↵Adam Ierymenko
ahead and keep track of total known peers.
2014-10-29Code cleanup, and fix some unsafe pointer handling in Network.Adam Ierymenko
2014-10-28Fix a nasty bug introduced in packet fragmentation a while back during ↵Adam Ierymenko
refactoring, and a few other things related to multicast.
2014-10-28Make multicast gather slightly more aggressive, and add total to list ↵Adam Ierymenko
command in testnet.
2014-10-28NULL dereference on still-initializing node bug fix in status query ↵Adam Ierymenko
commands, and doc updates.
2014-10-27Testnet seems to work a bit better now...Adam Ierymenko
2014-10-27...Adam Ierymenko
2014-10-24More testnet work.Adam Ierymenko
2014-10-23Testnet work... getting there!Adam Ierymenko
2014-10-22Some work on simulated net...Adam Ierymenko
2014-10-21Starting on simulated socket manager.Adam Ierymenko
2014-10-21More work on abstracting socket manager.Adam Ierymenko
2014-10-21About halfway there in refactoring to support pluggable SocketManager.Adam Ierymenko
2014-10-21Move socket manager implementation into osnet/Adam Ierymenko
2014-10-21Simplify locking semantics some more to address a deadlock.Adam Ierymenko
2014-10-19Don't need to check peer version for every item in txQueue since there is ↵Adam Ierymenko
only one peer.
2014-10-19Now for some clang compile fixes...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-14Get rid of rescanMulticastGroups() in Network thread since this can ↵Adam Ierymenko
deadlock... the fact that this can happen is probably bad design.
2014-10-14Fix sleeper bug that probably did nothing in setSupernodes().Adam Ierymenko