summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-03-29majority of four is, alas, threeRoger Dingledine
2016-03-29fix typo in commentRoger Dingledine
2016-03-29Merge remote-tracking branch 'arma/feature18624'Nick Mathewson
2016-03-29Faravahar also versions.Nick Mathewson
2016-03-28Merge branch 'maint-0.2.8'Nick Mathewson
2016-03-28Fix my dumb unreleased bug in 18673Nick Mathewson
2016-03-28Rename tor_dup_addr to tor_addr_to_str_dup.Nick Mathewson
Patch from icanhasaccount; closes 18462.
2016-03-28Merge branch 'maint-0.2.8'Nick Mathewson
2016-03-28Merge branch 'bug18673_028_v2' into maint-0.2.8Nick Mathewson
2016-03-28Merge remote-tracking branch 'sebastian/onlyonly' into maint-0.2.8Nick Mathewson
2016-03-28Remove a couple of redundant lines from the makefileNick Mathewson
Fixes the last case of 17744.
2016-03-28Merge branch 'reldoc'Nick Mathewson
2016-03-28Add more structure (and tests) to ReleasingTor.mdNick Mathewson
2016-03-28Begin an 0.2.9 branchtor-0.2.9.0-rootNick Mathewson
2016-03-28and NOW the version is 0.2.8.2-alpha-devNick Mathewson
2016-03-28rewrap changelogtor-0.2.8.2-alphaNick Mathewson
2016-03-28minor changelog cleanups to help the new alphaRoger Dingledine
2016-03-28changelog fixes from armaNick Mathewson
2016-03-28Bump version correctly this timeNick Mathewson
2016-03-28typo fixNick Mathewson
2016-03-28Fix memory leak in TestingEnableCellStatsEventNick Mathewson
Only when we were actually flushing the cell stats to a controller would we free them. Thus, they could stay in RAM even after the circuit was freed (eg if we didn't have any controllers). Fixes bug 18673; bugfix on 0.2.5.1-alpha.
2016-03-28Rescroll changelogNick Mathewson
2016-03-28grammar fixes from sebastianNick Mathewson
2016-03-28Fix a version number in the changelogNick Mathewson
2016-03-28reflow changelogNick Mathewson
2016-03-28Fix memory leaks that stopped chutney working with asanNick Mathewson
2016-03-28Fix a memory leak in tor-gencert.Nick Mathewson
This way I can run chutney under asan. Fixes part of 18672.
2016-03-28Bump the version numberNick Mathewson
2016-03-28Pick a dateNick Mathewson
2016-03-28Reflow the 0282 changelogNick Mathewson
2016-03-28Light editing and moving on the changelogNick Mathewson
2016-03-28Fold entries into changelogNick Mathewson
2016-03-28One more test that didnt pass on windows. See #18665.Nick Mathewson
2016-03-28Fix memory-counting error in rephist.c. Bug 18651. (Now with actual patch)Nick Mathewson
2016-03-28Fix memory-counting error in rephist.c. Bug 18651.Nick Mathewson
2016-03-27Remove redundant only in manpageSebastian Hahn
2016-03-26helper script to highlight undocumented membersNick Mathewson
2016-03-26Do not treat "DOCDOC" as doxygen.Nick Mathewson
2016-03-26add a little documentation to memarea. (I have been testing a tool.)Nick Mathewson
2016-03-26Whitespace fixesNick Mathewson
2016-03-26Fix all doxygen warnings (other than missing docs)Nick Mathewson
2016-03-26Merge branch 'bug18649_squashed'Nick Mathewson
2016-03-26Clarify excess consensus connection cleanup by adding commentsteor (Tim Wilson-Brown)
Comment-only change
2016-03-26who was that previous arma, who couldn't spell iso?Roger Dingledine
2016-03-25Disable failing broken time format case for windows.Nick Mathewson
2016-03-25Merge remote-tracking branch 'arma/bug18625'Nick Mathewson
2016-03-25Only check in-boundsness of seconds when time_t is smaller than i64Nick Mathewson
Otherwise coverity complains that we're checking an whether an int64 is less than INT64_MIN, which of course it isn't. Fixes CID 1357176. Not in any released Tor.
2016-03-25Merge branch 'bug18626_027'Nick Mathewson
2016-03-25Remove spurious exit() calls from configure.acNick Mathewson
We added these a while ago, but they do no actual good, and cause implicit declaration warnings in some situations. Rather than just adding stdint.h, it's easier to remove the exit() calls as redundant. Fixes bug 18626; bugfix from "cypherpunks"
2016-03-24use a clearer argument for connection_ap_make_link()Roger Dingledine
that function calls it argument "want_onehop", so it makes more sense to pass that boolean into it.