summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-08-05give 0.2.3.20-rc a blurb tootor-0.2.3.20-rcRoger Dingledine
2012-08-05bump to 0.2.3.20-rcRoger Dingledine
2012-08-05fold in more changes filesRoger Dingledine
2012-08-03Merge remote-tracking branch 'origin/maint-0.2.3' into release-0.2.3Nick Mathewson
2012-08-03Merge remote-tracking branch 'origin/maint-0.2.2' into maint-0.2.3Nick Mathewson
Conflicts: src/or/routerlist.c
2012-08-03Try to clarify impact of bug 6537Nick Mathewson
I don't personally agree that this is likely to be easy to exploit, and some initial experimention I've done suggests that cache-miss times are just plain too fast to get useful info out of when they're mixed up with the rest of Tor's timing noise. Nevertheless, I'm leaving Robert's initial changelog entry in the git history so that he can be the voice of reason if I'm wrong. :)
2012-08-03Mitigate a side-channel leak of which relays Tor chooses for a circuitRobert Ransom
Tor's and OpenSSL's current design guarantee that there are other leaks, but this one is likely to be more easily exploitable, and is easy to fix.
2012-08-03Remove bogus comment claiming that an assertion is triggerable by consensusRobert Ransom
2012-08-03Merge remote-tracking branch 'origin/maint-0.2.2' into maint-0.2.3Nick Mathewson
2012-08-03Clarify security impact of bug 6530Nick Mathewson
2012-08-03Avoid possible segfault when handling networkstatus vote with bad flavorNick Mathewson
Fix for 6530; fix on 0.2.2.6-alpha.
2012-07-31Merge branch 'bug6480_squashed' into maint-0.2.3Nick Mathewson
2012-07-31Avoid hard (impossible?)-to-trigger double-free in dns_resolve()Nick Mathewson
Fixes 6480; fix on 0.2.0.1-alpha; based on pseudonymous patch.
2012-07-31changelog for bug6043Nick Mathewson
2012-07-31Fixes/beautification of RPM spec. Tiny improvements in RPM build docs.Ondrej Mikle
2012-07-31Fixed creating _tor user in RPM-based installs.Ondrej Mikle
2012-07-31Workaround for building EL5 RPMs by specifying rpmbuild-md5. Updated old ↵Ondrej Mikle
note about using static libevent when building RPMs.
2012-07-31Cleanup of RPM build process - no more .git in tarball, use automake's ↵Ondrej Mikle
dist-gzip to create the tarball. Signed-off-by: Ondrej Mikle <ondrej.mikle@gmail.com>
2012-07-31Dependencies for RPM building with mock should work nowOndrej Mikle
2012-07-31Merge branch 'bug6490_v2' into maint-0.2.3Nick Mathewson
2012-07-31Warn when accounting is used in a way likely to link hidden servicesNick Mathewson
Fix for 6490.
2012-07-31Fix some manpage typosNick Mathewson
This is based on a pair of patches from A. Costa. I couldn't apply those directly, since they changed the generated *roff files, not the asciidoc source. Fixes Tor bug 6500 and Debian bug 683359.
2012-07-31bump to 0.2.3.19-rc-devRoger Dingledine
2012-07-31fold in changes so farRoger Dingledine
2012-07-31Merge branch 'maint-0.2.3' into release-0.2.3Roger Dingledine
2012-07-31trivial grammar fixRoger Dingledine
2012-07-23Merge remote-tracking branch 'asn/bug6274_take3' into maint-0.2.3Nick Mathewson
2012-07-20changes file for bug 6436.Nick Mathewson
2012-07-20Clarify how to build asciidoc files using homebrew on Mac OS XSteven Murdoch
2012-07-18Better handling of server managed proxies when Tor is not a relay.George Kadianakis
2012-07-18Merge branch 'smartlist_shorten' into maint-0.2.3Nick Mathewson
2012-07-18Tweaks to 6400 changes file and docs as suggested by armaNick Mathewson
2012-07-17Improve message on spurious SOCKSListenAddressNick Mathewson
2012-07-17Fix the remaining instances of nexted SMARTLIST_FOREACHNick Mathewson
2012-07-17Change all SMARTLIST_FOREACH loops of >=10 lines to use BEGIN/ENDNick Mathewson
The SMARTLIST_FOREACH macro is more convenient than BEGIN/END when you have a nice short loop body, but using it for long bodies makes your preprocessor tell the compiler that all the code is on the same line. That causes grief, since compiler warnings and debugger lines will all refer to that one line. So, here's a new style rule: SMARTLIST_FOREACH blocks need to be short.
2012-07-17Allow TestingTorNetwork when alternate dir and bridge authorities are set.Linus Nordberg
Allow TestingTorNetwork when AlternateDirAuthority and AlternateBridgeAuthority is set even if DirServer is not.
2012-07-16Refer to the correct variable in a loop when parsing entry guard stateNick Mathewson
Fixes bug 6397 and coverity issue 709599. Bugfix on 0.2.3.17-beta.
2012-07-16Coverity 709056: Check return value on fputs in tor-gencertNick Mathewson
2012-07-16Improve Alternate*Authority docs. Bug 6387.Nick Mathewson
2012-07-07releases are supposed to have blurbsRoger Dingledine
2012-07-06fold in latest changes itemtor-0.2.3.19-rcRoger Dingledine
also realize that there's one too many columns (now that i'm in air conditioning and my brain has resumed working)
2012-07-06Merge branch 'maint-0.2.3' into release-0.2.3Roger Dingledine
2012-07-06Merge branch 'maint-0.2.2' into maint-0.2.3Roger Dingledine
2012-07-06Revert to the May 2012 geoip dbRoger Dingledine
The June 2012 db marks too many relays as country "A1". Addresses bug 6334.
2012-07-06shuffle changelog entriesRoger Dingledine
2012-07-06fold changes entries into changelogRoger Dingledine
2012-07-06bump to 0.2.3.19-rcRoger Dingledine
2012-07-06Merge remote-tracking branch 'nickm/bug6271_part_a' into maint-0.2.3Roger Dingledine
2012-07-06Fix port range in parse_port_range().George Kadianakis
2012-07-06Fix a bug handling SENDME cells on nonexistent streams.Nick Mathewson
This could result in bizarre window values. Report and patch contributed pseudymously. Fixes part of bug 6271. This bug was introduced before the first Tor release, in svn commit r152. (bug 6271, part a.)