summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-07-03Remove old instructions from INSTALLrl1987
2018-07-02Merge branch 'maint-0.3.4'Nick Mathewson
2018-07-02Merge remote-tracking branch 'catalyst-github/bug26449_034' into maint-0.3.4Nick Mathewson
2018-07-02Merge branch 'maint-0.3.4'Nick Mathewson
2018-07-02Merge branch 'mikeperry_bug26214-rebased_squashed' into maint-0.3.4Nick Mathewson
2018-07-02Merge remote-tracking branch 'catalyst-github/moar-libs'Nick Mathewson
2018-07-02Merge branch 'bug26594'Nick Mathewson
2018-07-02Don't redefine str(n)casecmp on windows unless they're missingNick Mathewson
When we do redefine them, use inline functions instead of #define. This fixes a latent code problem in our redefinition of these functions, which was exposed by our refactoring: Previously, we would #define strcasecmp after string.h was included, so nothing bad would happen. But when we refactored, we would sometimes #define it first, which was a problem on mingw, whose headers contain (approximately): inline int strcasecmp (const char *a, const char *b) { return _stricmp(a,b); } Our define turned this into: inline int _stricmp(const char *a, const char *b) { return _stricmp(a,b); } And GCC would correctly infer that this function would loop forever, rather than actually comparing anything. This caused bug 26594. Fixes bug 26594; bug not in any released version of Tor.
2018-07-01File-level documentation for some of src/lib.Nick Mathewson
2018-07-01Prune the .may_include files a bit; detect unused lines in themNick Mathewson
2018-07-01Merge branch 'maint-0.3.3' into maint-0.3.4Nick Mathewson
2018-07-01Merge branch 'maint-0.3.4'Nick Mathewson
2018-07-01Merge remote-tracking branch 'dgoulet/bug26523_033_01' into maint-0.3.3Nick Mathewson
2018-07-01Update the coverage script to look at new file locationsNick Mathewson
2018-07-01Add make targets to show static libraries.Nick Mathewson
These might make it easier for people to link our stuff, and keep their scripts more robust.
2018-07-01Tabify all of the .am files.Nick Mathewson
2018-06-30Merge branch 'maint-0.3.4'Nick Mathewson
2018-06-30Merge remote-tracking branch 'catalyst-github/bug25895_034-squashed' into ↵Nick Mathewson
maint-0.3.4
2018-06-29Merge branch 'maint-0.3.2' into maint-0.3.3Nick Mathewson
2018-06-29Merge branch 'maint-0.3.4'Nick Mathewson
2018-06-29Merge branch 'maint-0.3.3' into maint-0.3.4Nick Mathewson
2018-06-29Merge branch 'maint-0.3.1' into maint-0.3.2Nick Mathewson
2018-06-29Merge branch 'maint-0.2.9' into maint-0.3.1maint-0.3.1Nick Mathewson
2018-06-29Finally remove our EOL@EOF check.Nick Mathewson
This check was added by mistake long ago. It will be nice to see these EOLs disappear from our code over time. (backport from master)
2018-06-29Restor EOL@EOF in routerlist.cNick Mathewson
2018-06-29Add another winsock2 include, for timeval in procmon.Nick Mathewson
2018-06-29add an include to fix macos, and probably bsd tooNick Mathewson
2018-06-29Merge branch 'maint-0.3.2' into maint-0.3.3Nick Mathewson
2018-06-29Merge branch 'maint-0.3.1' into maint-0.3.2Nick Mathewson
2018-06-29Merge branch 'maint-0.2.9' into maint-0.3.1Nick Mathewson
2018-06-29Merge branch 'maint-0.3.3' into maint-0.3.4Nick Mathewson
2018-06-29Merge branch 'maint-0.3.4'Nick Mathewson
2018-06-29Fix a memory error in test_shared_randomNick Mathewson
Bug not in any released Tor.
2018-06-29Fix some memory errors in the recent coverity fixes.Nick Mathewson
Found by asan on travis :/
2018-06-29Merge branch 'maint-0.3.2' into maint-0.3.3Nick Mathewson
2018-06-29Merge branch 'maint-0.3.3' into maint-0.3.4Nick Mathewson
2018-06-29Merge branch 'maint-0.3.4'Nick Mathewson
2018-06-29Merge remote-tracking branch 'ahf-github/maint-0.3.2' into maint-0.3.2Nick Mathewson
2018-06-29Merge branch 'maint-0.3.4'Nick Mathewson
2018-06-29Merge branch 'maint-0.2.9' into maint-0.3.1Nick Mathewson
2018-06-29Merge branch 'maint-0.3.2' into maint-0.3.3Nick Mathewson
2018-06-29Merge branch 'maint-0.3.3' into maint-0.3.4Nick Mathewson
2018-06-29Merge branch 'maint-0.3.1' into maint-0.3.2Nick Mathewson
2018-06-29Merge remote-tracking branch 'ahf-github/maint-0.3.0' into maint-0.3.1Nick Mathewson
2018-06-29Merge remote-tracking branch 'ahf-github/maint-0.3.1' into maint-0.3.1Nick Mathewson
2018-06-29Changes file for 26467Nick Mathewson
2018-06-29Merge branch 'maint-0.3.4'Nick Mathewson
2018-06-29Merge branch 'maint-0.3.3' into maint-0.3.4Nick Mathewson
2018-06-29Merge branch 'maint-0.3.2' into maint-0.3.3Nick Mathewson
2018-06-29Merge branch 'maint-0.3.1' into maint-0.3.2Nick Mathewson