summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-04-06Consolidate routing table code.Adam Ierymenko
2016-04-06Put routing table code back in osdep/Adam Ierymenko
2016-04-06.Adam Ierymenko
2016-04-06Tweak new RX queue algorithm to "expire" old entries to prevent always ↵Adam Ierymenko
needing to traverse the whole queue array.
2016-04-06Preserve add local interface address add order and send in that order since ↵Adam Ierymenko
this is a priority.
2016-04-05Binder for Windows, and use Binder to get local interface addresses to ↵Adam Ierymenko
advertise.
2016-04-05OneService now binds all ports to specific local interfaces instead of ↵Adam Ierymenko
wildcard and rebinds on changes. (default route)
2016-04-05More refactoring and prep for explicit interface bindings (for default route ↵Adam Ierymenko
support).
2016-04-05Reduce symmetric prediction fuzz just a bit.Adam Ierymenko
2016-04-05Fix Cluster to send from a designated endpoint address instead of wildcard.Adam Ierymenko
2016-04-04Beginning of local binding manager for default gateway support.Adam Ierymenko
2016-04-01Tweak metric and clean out attic a bit.Adam Ierymenko
2016-03-30nit pick... might this matter?Adam Ierymenko
2016-03-28More tweaks to OS determination stuff.Adam Ierymenko
2016-03-28Try to define ZT_NO_TYPE_PUNNING on iOS in case it wasn't.Adam Ierymenko
2016-03-28Fix some broken TRACEs and a tiny reorder in a few ifs.Adam Ierymenko
2016-03-24Ignore IP assignment pool ranges that begin with 0.0.0.0 or that contain no IPs.Adam Ierymenko
2016-03-24Do not auto-assign IP addresses on bridges. IPs can still be assigned manually.Adam Ierymenko
2016-03-18A few other little formatting things.Adam Ierymenko
2016-03-18IndentationAdam Ierymenko
2016-03-18Refactor incoming packet (rxQueue/fragmentQueue) to eliminate variable ↵Adam Ierymenko
length queues and merge queues. This is both faster and saves memory.
2016-03-17Make /network/???/active return more info.Adam Ierymenko
2016-03-04Add “doc” to the dependencies for the “all” build target.Ben Finney
2016-03-04Add an overall “doc” build target.Ben Finney
2016-03-04Correct license grant to match “GPL v3 or later” grant in source.Ben Finney
2016-03-04Update copyright notice.Ben Finney
2016-03-04Refactor the program name to a pre-processor directive.Ben Finney
2016-03-04Refactor the copyright notice text to a pre-processor directive.Ben Finney
2016-03-04Refactor the license grant text to a pre-processor directive.Ben Finney
2016-03-04Add Makefile module for building documentation.Ben Finney
2016-03-04Ignore generated man page files.Ben Finney
2016-03-04Add a stub for an encoding declaration on a man page.Ben Finney
2016-03-04Add references to other tools for ‘zerotier-one’.Ben Finney
2016-03-04Add incomplete man pages for ‘zerotier-idtool’ and ‘zerotier-cli’.Ben Finney
2016-03-04Document how the home directory is used, and its default value.Ben Finney
2016-03-04Document remaining options explicitly.Ben Finney
2016-03-04More explicit specification of how to use ‘-i’ and ‘-q’.Ben Finney
2016-03-04Add “see also” section referring to ZeroTier documentation online.Ben Finney
2016-03-04Refine description of ZeroTier One.Ben Finney
2016-03-04Add a reStructuredText document for a ‘zerotier-one(8)’ man page.Ben Finney
2016-03-03Fix cluster-geo code to cache IPv6 by first 64 bits to prevent cache fillup ↵Adam Ierymenko
due to IPv6 privacy extensions.
2016-03-03stupid bug is stupidAdam Ierymenko
2016-03-03more makefile stuffAdam Ierymenko
2016-03-03Linux make clean fix.Adam Ierymenko
2016-03-03indent fixAdam Ierymenko
2016-03-03Fix problems with previous commit.Adam Ierymenko
2016-03-03Another NAT-t improvement:Adam Ierymenko
Many NATs revert to symmetric behavior from friendlier modes if they cannot preserve ports. This can occur if there is, for example, more than one ZT device behind the NAT using port 9993. Others (Airport Extreme?) seem to have bugs in which they completely freak out if more than one device tries to do a lot of mappings using the same internal local port. Mostly to fix the latter case and somewhat to fix the former, we introduce a secondary port. ZeroTier now binds 9993 (or whatever port you specify) plus another port computed deterministically from your ZeroTier address. This port is used for new links 1/4 of the time. This mostly addresses the second problem above and partly helps to address the first. If uPnP/NAT-PMP is enabled we also still open a tertiary port because some routers freak out if NAT-t is attempted using the same port as uPnP. All of this is IPv4 only of course. IPv6 is sane.
2016-03-02Windows cleanup.Adam Ierymenko
2016-03-02More Windows tweaks and a compile fix.Adam Ierymenko
2016-03-02Tweaks to WindowsEthernetTap to attempt to address GitHub issue #308 and/or ↵Adam Ierymenko
GitHub issue #277 -- we can't reproduce yet but I found one area where a spin was possible under certain failure conditions. Maybe.