summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add UseNewGuardAlgorithm config flagticket19878-wipAndrea Shepard2016-11-07
|
* Implement prop 271 case in entry_guard_get_by_id_digest_for_guard_selection()Andrea Shepard2016-11-06
|
* Add guards list to guard_selection_t, and some notesAndrea Shepard2016-11-06
|
* Implement prop271 handling in guard_selection_free(), all_guards listAndrea Shepard2016-11-06
|
* Implement bridge case for compute_current_guard_list_for_guard_selection()Andrea Shepard2016-10-31
|
* Proposal 271 functions stubbed outAndrea Shepard2016-10-20
|
* Add proposal 271 guard selection type field to guard_selection_tAndrea Shepard2016-10-20
|
* Refactor to always allocate chosen_entry_guards in new guard_selection_new() ↵ticket19858_v2Andrea Shepard2016-10-14
| | | | function
* Use tor_memeq() instead of tor_memcmp() per code reviewAndrea Shepard2016-10-13
|
* Adjust comment per code reviewAndrea Shepard2016-10-13
|
* Changes file for ticket 19858ticket19858Andrea Shepard2016-09-25
|
* Abolish globals in entrynodes.c; relativize guard context to new ↵Andrea Shepard2016-09-25
| | | | guard_selection_t structure
* Merge remote-tracking branch 'samdney/ticket19209'Nick Mathewson2016-09-12
|\
| * Add some clarifications in the comments. Bug 19209Carolin Zöbelein2016-09-11
| |
* | Whoops. Cant call sockaddr_in a "sin", since sin() is a thing.Nick Mathewson2016-09-11
| |
* | Fix gmtime unit test on openbsdNick Mathewson2016-09-11
| | | | | | | | | | | | openbsd helpfully handles gmtime() of INT64_MIN. Good job! Our tests didn't handle that so well.
* | Try to make our ersatz-socketpair test work better on FreeBSD jailsNick Mathewson2016-09-11
| |
* | Tweak tor_gmtime_r test.Nick Mathewson2016-09-11
| | | | | | | | | | On openbsd64, I'm seeing a warning that the log isn't saying what I'd expect, but I'm not seeing what the answer actually _is_ here.
* | changes file for 19767Nick Mathewson2016-09-11
| |
* | Merge remote-tracking branch 'public/solaris_warnings_028'Nick Mathewson2016-09-11
|\ \
| * | Re-run trunnel.Nick Mathewson2016-07-28
| | |
| * | Fix a large pile of solaris warnings for bug 19767.Nick Mathewson2016-07-28
| | | | | | | | | | | | | | | In nearly all cases, this is a matter of making sure that we include orconfig.h before we include any standard c headers.
* | | make check-spacesNick Mathewson2016-09-09
| | |
* | | Fix a coupole of coverity complaints.Nick Mathewson2016-09-09
| | |
* | | Fix cases where the tests were doing closesocket() on a non-socketNick Mathewson2016-09-09
| | | | | | | | | | | | These seem to have caused warnings on windows. Hmmm.
* | | Oh dear, I was missing an extern.Nick Mathewson2016-09-09
| | |
* | | Make a couple more tests run faster.Nick Mathewson2016-09-09
| | | | | | | | | | | | The point of diminishing returns has been reached.
* | | Disable a single pbkdf2 test vectorNick Mathewson2016-09-09
| | | | | | | | | | | | | | | | | | | | | | | | The other test vectors are pretty complete, and get full coverage, I believe. This one test vector accounted for half the time spent in test-slow. "Now that's slow!"
* | | Chop another ~93 RSA key generations out of the unit testsNick Mathewson2016-09-09
| | | | | | | | | | | | | | | | | | We have a mock for our RSA key generation function, so we now wire it to pk_generate(). This covers all the cases that were not using pk_generate() before -- all ~93 of them.
* | | Move the donna-fuzzing tests into test_slow.Nick Mathewson2016-09-09
| | | | | | | | | | | | | | | This shaves another 3-4 seconds off the main-path tests for me, which is again worth it, according to XKCD#1204.
* | | Re-enable RSA cacheing in tests, with a better design.Nick Mathewson2016-09-09
| | | | | | | | | | | | | | | This makes tests faster and saves about 6 seconds for me, which makes it worth it, according to https://xkcd.com/1205.
* | | Reinstate a couple of teardown_capture_of_logs that I missedNick Mathewson2016-09-08
| | | | | | | | | | | | Patch from rubiate. See #19999
* | | Placate "make check-spaces"Nick Mathewson2016-09-08
| | |
* | | Fix remaining test warnings. (in test_relay.c)Nick Mathewson2016-09-08
| | |
* | | Fix typo error in bug warning in relay.cNick Mathewson2016-09-08
| | |
* | | capture and detect expected BUG messages in shared-random testsNick Mathewson2016-09-08
| | |
* | | Simplify log_test_helpers interfaceNick Mathewson2016-09-08
| | | | | | | | | | | | | | | | | | Previously, you needed to store the previous log severity in a local variable, and it wasn't clear if you were allowed to call these functions more than once.
* | | Resolve more BUG warnings in the unit testsNick Mathewson2016-09-08
| | |
* | | Fix bug warnings in test_circuitlist.Nick Mathewson2016-09-08
| | |
* | | Treat all nonfatal assertion failures as unit test failures.Nick Mathewson2016-09-08
| | | | | | | | | | | | Part of 19999.
* | | Tolerate another failure mode of get_if_addres6_list in testsNick Mathewson2016-09-08
| | |
* | | more consistent use of expect_log_msg_containingNick Mathewson2016-09-08
| | |
* | | Suppress a really impressive pile of warnings in conection/.. testsNick Mathewson2016-09-08
| | |
* | | Fix a bug in connection/download_status.. testsNick Mathewson2016-09-08
| | |
* | | Revise log-testing macros to dump the actual log contents on failureNick Mathewson2016-09-08
| | |
* | | Remove redundant definitions of expect_{no_,}log_msg()Nick Mathewson2016-09-08
| | |
* | | Fix libevent linking on openbsd.Nick Mathewson2016-09-08
| | | | | | | | | | | | Closes ticket 19902; bugfix on 0.2.9.1-alpha; patch from rubiate
* | | Disable -Wthread-safety.Nick Mathewson2016-09-08
| | | | | | | | | | | | See changes file; closes ticket 20110.
* | | Unit test fix: windows should be able to handle DNSPort just fine.Nick Mathewson2016-09-08
| | |
* | | Patch from rubiate: disable openbsd memory protections in test-memwipeNick Mathewson2016-09-08
| | | | | | | | | | | | | | | | | | Test-memwipe is *supposed* to invoke undefined behavior, alas. Closes 20066.