Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-11-10 | Helper function to see if an ed25519 pk is set. | Nick Mathewson | |
2016-11-10 | Merge remote-tracking branch 'dgoulet/bug20570_030_01' | Nick Mathewson | |
2016-11-10 | Merge remote-tracking branch 'dgoulet/bug20567_030_01' | Nick Mathewson | |
2016-11-10 | Merge remote-tracking branch 'public/feature20552' | Nick Mathewson | |
2016-11-10 | Merge remote-tracking branch 'dgoulet/bug20574_030_01' | Nick Mathewson | |
2016-11-10 | Merge remote-tracking branch 'dgoulet/ticket19642_030_01' | Nick Mathewson | |
2016-11-10 | Add "TByte" and "TBytes" units; also add "TBits" to man page | Matt Nordhoff | |
2016-11-10 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-10 | Merge remote-tracking branch 'teor/bug20613' into maint-0.2.9 | Nick Mathewson | |
2016-11-08 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-09 | Stop logging single onion and Tor2web long-term one-hop circuits | teor | |
Single onion services and Tor2web deliberately create long-term one-hop circuits to their intro and rend points, respectively. These log messages are intended to diagnose issue 8387, which relates to circuits hanging around forever for no reason. Fixes bug 20613; bugfix on 0.2.9.1-alpha. Reported by "pastly". | |||
2016-11-08 | In torrc.sample.in, note that bandwidth must be >=75 KB. | Nick Mathewson | |
Queue a corresponding change for torrc.minimal.in. Closes ticket 20085. | |||
2016-11-09 | Call get_options() once at the top of circuit_log_ancient_one_hop_circuits() | teor | |
Refactoring, no behaviour change. | |||
2016-11-08 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-08 | Merge remote-tracking branch 'public/bug20306_029' into maint-0.2.9 | Nick Mathewson | |
2016-11-08 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-08 | Use va_copy() in pure-windows version of tor_asprintf(). | Nick Mathewson | |
It's not okay to use the same varargs list twice, and apparently some windows build environments produce code here that would leave tor_asprintf() broken. Fix for bug 20560; bugfix on 0.2.2.11-alpha when tor_asprintf() was introduced. | |||
2016-11-08 | hs: Add single-onion-service line to v3 descriptor | David Goulet | |
This field indicates if the service is a Single Onion Service if present in the descriptor. Closes #19642 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2016-11-08 | forwardport changelog | Nick Mathewson | |
2016-11-08 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
This is an "ours" merge to avoid bumping the version. | |||
2016-11-08 | Bump version to 0.2.9.5-alpha-dev | Nick Mathewson | |
2016-11-08 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-08 | When using exponential backoff in test networks, use a lower exponent | teor | |
Lower exponents mean that delays do not vary as much. This helps test networks bootstrap consistently. Bugfix on 20499. | |||
2016-11-07 | typo fix in doc/HACKING/ReleasingTor.md | Nick Mathewson | |
2016-11-07 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
This is an "ours" merge to avoid taking the version bump. | |||
2016-11-07 | bump version to 0.2.9.5-alpha | Nick Mathewson | |
2016-11-07 | Remove from master more changes files already merged in release-0.2.9 | Nick Mathewson | |
2016-11-07 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
Conflicts: src/or/rendservice.c | |||
2016-11-07 | Make new changes files pass lintchanges | Nick Mathewson | |
2016-11-07 | Merge remote-tracking branch 'teor/bug20484_029_v2' into maint-0.2.9 | Nick Mathewson | |
2016-11-07 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-07 | Fix another 20499-broken test | Nick Mathewson | |
2016-11-07 | Fix a unit test (broken by recent 20499 hacking) | Nick Mathewson | |
2016-11-08 | Add onion_service_non_anonymous file to man page | teor | |
2016-11-07 | hs: Document arguments of rend_data_*_create() | David Goulet | |
Fixes #20567 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2016-11-07 | hs: Add changes file for HSDir v3 protocol feature | David Goulet | |
Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2016-11-07 | Treat bacoff/schedule mismatch as a bug. | Nick Mathewson | |
2016-11-07 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-07 | Merge branch 'bug20534_029_squashed' into maint-0.2.9 | Nick Mathewson | |
2016-11-07 | Reduce multiplier to 3, per teor's recommendation on #20534 | Nick Mathewson | |
(Three _is_ a good number for anonymity!) | |||
2016-11-07 | Always increment delays by at least 1. | Nick Mathewson | |
2016-11-07 | Avoid integer overflow in delay calculation. | Nick Mathewson | |
2016-11-07 | Count HTTP 503 as a download failure. | Nick Mathewson | |
Because as Teor puts it: "[Resetting on 503] is exactly what we don't want when relays are busy - imagine clients doing an automatic reset every time they DoS a relay..." Fixes bug 20593. | |||
2016-11-07 | Adjust download schedules per teor's #20534 recommendataions | Nick Mathewson | |
2016-11-07 | test: Remove useless HS decode multiple intro points | David Goulet | |
The test was broken and skipped because the hardcoded cross certificate didn't include the dynamically generated signing key generated by the test. The only way we could have fixed that is extracting the signing key from the hardcoded string and put it in the descriptor object or dynamically generate the cross certificate. In the end, all this was kind of pointless as we already test the decoding of multiple introduction points elsewhere and we don't gain anything with that specific test thus the removal. Fixes #20570 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2016-11-07 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-07 | Merge branch 'maint-0.2.8' into maint-0.2.9 | Nick Mathewson | |
2016-11-07 | Merge branch 'maint-0.2.7' into maint-0.2.8 | Nick Mathewson | |
2016-11-07 | Merge branch 'maint-0.2.6' into maint-0.2.7 | Nick Mathewson | |
2016-11-07 | Merge branch 'maint-0.2.5' into maint-0.2.6 | Nick Mathewson | |