summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-02-19Adjust changelog to combine 3 sections about the same thingtor-0.2.6.3-alphaNick Mathewson
2015-02-19Pick a date (today)Nick Mathewson
2015-02-19fold one more entry into the changelogNick Mathewson
2015-02-19Merge branch 'AUTHDIR_NEWDESC_enough_squashed'Nick Mathewson
2015-02-19Try to fix authdir_newdesc eventsNick Mathewson
We were sending values that were truncated by the length of the annotations.
2015-02-19Increment version to 0.2.6.3-alphaNick Mathewson
2015-02-19Merge changes into changelogNick Mathewson
2015-02-19appease lintchangesNick Mathewson
2015-02-19Check for # characters in lintchangesNick Mathewson
2015-02-19reflow 0.2.6.3 changelogNick Mathewson
2015-02-19answer some of roger's questionsNick Mathewson
2015-02-19Merge branch 'bug12844_macros'Nick Mathewson
2015-02-19Merge branch 'bug13762_quiet_squashed'Nick Mathewson
2015-02-19Do not try to download an EI for which we don't have a matching SD.Nick Mathewson
This quiets some log messages for #13762, and adds a better INFO message for the underlying confusion.
2015-02-19sorry britsRoger Dingledine
2015-02-19final cleanupsRoger Dingledine
2015-02-19reach into the past and fix two changelog stanzasRoger Dingledine
2015-02-19Check ENABLE_TOR2WEB_MODE before any tor2webmode codeNick Mathewson
2015-02-19some more changelog cleanupsRoger Dingledine
2015-02-19continue cleaning changelog, and add a question for nickRoger Dingledine
2015-02-19cleanup and ask two questions for nickRoger Dingledine
2015-02-19clean up nickm's changelog entry for #14918Roger Dingledine
now that I made it log "never" rare than "less often".
2015-02-19stop warning each time we check minimum-dir-infoRoger Dingledine
We already log whenever our state changes, e.g. whenever new directory information arrives. This additional log_warn() will at best just add more log messages, or worse, make the user wonder what she needs to fix. (Changed after consultation with Yawning.)
2015-02-19don't update dir_info_status when we have minimum dir infoRoger Dingledine
Nothing ever uses the string when we're in "have minimum dir info" state. The flow of the function is "check for problems, if you see a problem write an explanation to dir_info_status and set res to 0". If you get to the end of the function without any problems, then res = 1 and we're all ready to start making circuits. (Changed after consultation with Yawning.)
2015-02-18clean up comments and whitespace a bitRoger Dingledine
2015-02-18rescroll changelogNick Mathewson
2015-02-18Changelog edits. Most of them.Nick Mathewson
2015-02-18write a blurb and start hand-editing the 0.2.6.3-alpha changelogNick Mathewson
2015-02-18specify a default for UseGuardFraction in the man pageRoger Dingledine
(as added in commit f4a63f8eab)
2015-02-18Downgrade new extrainfo_insert warnings on startupNick Mathewson
2015-02-18Reflow changelogNick Mathewson
2015-02-18merge new items into 0.2.6.3-alpha changelogNick Mathewson
2015-02-18Merge branch 'bug13762_diagnostic_redux'Nick Mathewson
2015-02-18Patch from cypherpunks to try to diagnose 8387.Nick Mathewson
2015-02-18Improve log messages for diagnosing 13762Nick Mathewson
2015-02-18Merge remote-tracking branch 'yawning/cid1270894'Nick Mathewson
2015-02-18Actually free measured_guardfraction.Yawning Angel
CID 1270894
2015-02-18whitespace fixesNick Mathewson
2015-02-18Fix an implicit-narrowing warningNick Mathewson
2015-02-18Merge remote-tracking branch 'yawning/bug14918'Nick Mathewson
2015-02-18Combine test_helpers.[ch] and testhelper.[ch]Nick Mathewson
2015-02-18Merge branch 'bug9321_rerebase'Nick Mathewson
Conflicts: src/or/dirvote.h src/test/include.am src/test/test_entrynodes.c
2015-02-18Don't exit if we can't find the GuardfractionFile when booting.George Kadianakis
...just disable the feature in that case.
2015-02-18Final guardfraction preparations for upstream merge.George Kadianakis
- Write a changes file. - Change some logs to lesser severities.
2015-02-18Add unittests for the guardfraction feature.George Kadianakis
2015-02-18Unittest prep: Move get_yesterday_date_str() to helper file.George Kadianakis
We want to use this function in our guardfraction unittests, so make a test_helpers module and move it there.
2015-02-18Calculate relay weighted bandwidth using guardfraction bandwidths.George Kadianakis
Now use the guardfraction function to calculate individual relay bandwidth weights.
2015-02-18Calculate total bandwidth weights using the guardfraction bandwidths.George Kadianakis
Now use the function introduced in the previous commit, to calculate the total bandwidth weights when making the consensus.
2015-02-18Calculate the guardfraction bandwidth of a guard.George Kadianakis
2015-02-18Parse GuardFraction info from consensuses and votes.George Kadianakis
Also introduce the UseGuardFraction torrc option which decides whether clients should use guardfraction information found in the consensus.