aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-09-04Clear the ipv6_preferred flag like the others.Linus Nordberg
I'm not entirely sure that this is meningful but I'm pretty sure it's not harmful. Seems like the logical thing to do.
2012-09-04Fix a comment.Linus Nordberg
2012-09-04Rename configure.in to configure.acNick Mathewson
This is the preferred filename to use with Autoconf 2.50 and later.
2012-09-04Merge remote-tracking branch 'arma/bug6759'Nick Mathewson
2012-09-04Merge remote-tracking branch 'arma/feature6758'Nick Mathewson
2012-09-04Merge remote-tracking branch 'arma/feature6760'Nick Mathewson
2012-09-03resolve an XXX by agreeing with nickmRoger Dingledine
2012-09-03make "Launching %d requests for %d routers" message more usefulRoger Dingledine
specifically, specify what sort of routers we're fetching.
2012-09-03quiet "I learned some more directory information" on startupRoger Dingledine
Reserve it for when new directory information arrives in response to a fetch. Resolves ticket 6760.
2012-09-03Don't log about reloading the microdescriptor cache at startupRoger Dingledine
Addresses bug 6759.
2012-09-03omit the first heartbeat message (resolves ticket 6758)Roger Dingledine
2012-09-03fix whitespace and trivial typoRoger Dingledine
2012-09-01retroactively fix version typo in changelogRoger Dingledine
2012-08-31Merge remote-tracking branch 'origin/maint-0.2.3'Nick Mathewson
2012-08-31Merge branch 'bug6732' into maint-0.2.3Nick Mathewson
2012-08-31Remove changes files which have been removed in release-0.2.3Nick Mathewson
2012-08-31Document the --branch argument to contrib/findMergedChanges.plNick Mathewson
2012-08-31Document consensus and microdesc filesNick Mathewson
Bugfix for #6732.
2012-08-27Merge remote-tracking branch 'origin/maint-0.2.3'Nick Mathewson
2012-08-27Quiet "Set buildtimeout to low val" warnings: make them infoNick Mathewson
Fix for #6251
2012-08-27Merge remote-tracking branch 'mikeperry/bug6647'Nick Mathewson
2012-08-27Merge (with -s ours) remote-tracking branch 'origin/maint-0.2.3'Nick Mathewson
We are doing this merge to avoid taking the patch from "nickm/disable_pathbias_warnings_v2" into 0.2.4 -- we're going to try to fix the pathbias code for real here.
2012-08-27Merge branch 'disable_pathbias_warnings_v2' into maint-0.2.3Nick Mathewson
2012-08-27Downgrade path-bias warning messages to INFO for now.Nick Mathewson
We've had over two months to fix them, and didn't. Now we need 0.2.3.x stable. Yes, it would be cool to get this working in 0.2.3.x, but not at the expense of delaying every other feature that _does_ work in 0.2.3.x. We can do a real fix in 0.2.4.
2012-08-27Merge remote-tracking branch 'origin/maint-0.2.3'Nick Mathewson
2012-08-27Merge branch 'bug6710_023' into maint-0.2.3Nick Mathewson
2012-08-27Merge remote-tracking branch 'origin/maint-0.2.3'Nick Mathewson
2012-08-27Merge remote-tracking branch 'origin/maint-0.2.2' into maint-0.2.3Nick Mathewson
Conflicts: src/or/policies.c
2012-08-27Merge branch 'bug6690_022' into maint-0.2.2Nick Mathewson
2012-08-27and fix them here tooRoger Dingledine
2012-08-27Bug 6647: Add changes fileMike Perry
2012-08-27Fix changes file for 6710: before 0.0.8pre1, you couldn't extend toNick Mathewson
a router that another router wasn't already connected to.
2012-08-27Do not assert when comparing a null address/port against a policyNick Mathewson
This can create a remote crash opportunity for/against directory authorities.
2012-08-27Disable extending to private/internal addresses by defaultNick Mathewson
This is important, since otherwise an attacker can use timing info to probe the internal network. Also, add an option (ExtendAllowPrivateAddresses) so that TestingTorNetwork won't break. Fix for bug 6710; bugfix on all released versions of Tor.
2012-08-27Fix whitespaceNick Mathewson
2012-08-27Merge branch 'bug6524_nm'Nick Mathewson
2012-08-27Changes file for nonrecursive make branchNick Mathewson
2012-08-27Update .gitignore with new autotools droppings from nonrecursive makeNick Mathewson
2012-08-27Better fix to avoid loudness on mkdir -pJim Meyering
(commit message by nickm)
2012-08-27build: minimal adjustments to make out-of-tree build workJim Meyering
2012-08-27Merge remote-tracking branch 'linus/bug6364'Nick Mathewson
2012-08-27Merge remote-tracking branch 'linus/bug6362'Nick Mathewson
2012-08-24Merge remote-tracking branch 'origin/maint-0.2.3'Nick Mathewson
2012-08-24Merge remote-tracking branch 'public/bug6472' into maint-0.2.3Nick Mathewson
2012-08-24Make node_assert_ok less duplicateyNick Mathewson
This comes at the cost of making its failure message a little less friendly, but since when do assertion failures count as user-friendly?
2012-08-24Clarify docs on get_configured_bridge_by_*_digestNick Mathewson
2012-08-24We now need automake 1.9 or laterNick Mathewson
Automake 1.7 is too broken to even investigate why it broke at this point.
2012-08-23Bug 6647: Use correct scale constant and prevent rounding errorMike Perry
We were effectively resetting our counts, and the rounding error leads to incorrect log messages.
2012-08-23Bug 6475: Demote pathbias log messages for 0.2.3.xMike Perry
Also make a couple of them less scary. We'll do a separate, additional commit on 0.2.4.x to bump them back up again.
2012-08-23Disable path bias accounting if we have no guards.Mike Perry
This should eliminate a lot of notices for Directory Authorities and other situations where circuits built without using guard nodes.