| Commit message (Expand) | Author | Age |
* | Merge commit 'sebastian/specconformance' | Roger Dingledine | 2009-09-16 |
|\ |
|
| * | Fix a spec conformance issue when parsing a ns vote•••A vote may only contain exactly one signature. Make sure we reject
votes that violate this.
Problem found by Rotor, who also helped writing the patch. Thanks!
| Sebastian Hahn | 2009-09-14 |
* | | Merge commit 'origin/maint-0.2.1'•••Resolved conflicts in:
src/or/circuitbuild.c
| Nick Mathewson | 2009-09-15 |
|\ \ |
|
| * | | Fix a memory leak when parsing a ns•••Adding the same vote to a networkstatus consensus leads to a memory leak
on the client side. Fix that by only using the first vote from any given
voter, and ignoring the others.
Problem found by Rotor, who also helped writing the patch. Thanks!
| Sebastian Hahn | 2009-09-14 |
* | | | Implement proposal 167: Authorities vote on network parameters.•••This code adds a new field to vote on: "params". It consists of a list of
sorted key=int pairs. The output is computed as the median of all the
integers for any key on which anybody voted.
Improved with input from Roger.
| Nick Mathewson | 2009-09-14 |
| |/
|/| |
|
* | | Fix compile warnings on Snow Leopard•••Big thanks to nickm and arma for helping me with this!
| Sebastian Hahn | 2009-09-01 |
* | | Merge commit 'origin/maint-0.2.1' | Nick Mathewson | 2009-09-01 |
|\| |
|
| * | Fix compile warnings on Snow Leopard•••Big thanks to nickm and arma for helping me with this!
| Sebastian Hahn | 2009-09-01 |
* | | When Tor fails to parse a descriptor of any kind, dump it to disk. | Karsten Loesing | 2009-08-26 |
* | | Merge commit 'karsten/proposal-166-impl-master' | Nick Mathewson | 2009-08-26 |
|\ \ |
|
| * | | Include contents of *-stats files in descriptor. | Karsten Loesing | 2009-08-17 |
| |/ |
|
* | | Add the first 8 bytes of the git commit digest to our versions.•••Note that unlike subversion revision numbers, it isn't meaningful to
compare these for anything but equality. We define a sort-order anyway,
in case one of these accidentally slips into a recommended-versions
list.
| Nick Mathewson | 2009-08-21 |
* | | Implement measured bw parsing + unit tests. | Mike Perry | 2009-08-06 |
|/ |
|
* | Spell-check Tor. | Nick Mathewson | 2009-05-27 |
* | Update copyright to 2009. | Karsten Loesing | 2009-05-04 |
* | Fix a few crash bugs related to malormed descriptors. Lark found one; fuzzin...•••svn:r19250
| Nick Mathewson | 2009-04-09 |
* | uh, and commit the patch too.•••svn:r18423
| Roger Dingledine | 2009-02-09 |
* | Fix a possible cause of bug 915 when parsing multiple votes one of which was ...•••svn:r18354
| Nick Mathewson | 2009-01-31 |
* | Fix up (I hope) most ot the things that coverity suddenly claimed were REVERS...•••svn:r18096
| Nick Mathewson | 2009-01-13 |
* | Remove svn $Id$s from our source, and remove tor --version --version.•••The subversion $Id$ fields made every commit force a rebuild of
whatever file got committed. They were not actually useful for
telling the version of Tor files in the wild.
svn:r17867
| Nick Mathewson | 2009-01-04 |
* | Downgrade the last xxx021 in routerparse. The duplicate code stands for now.•••svn:r17817
| Nick Mathewson | 2008-12-29 |
* | Extact parse-the-token-arguments to its own function, and change it to a sing...•••svn:r17812
| Nick Mathewson | 2008-12-29 |
* | Remove a call to find_whitespace_eos that didn't actually do anything.•••svn:r17811
| Nick Mathewson | 2008-12-29 |
* | Refactor some exit-policy-related functions that showed up in oprofile.•••Specifically, split compare_tor_addr_to_addr_policy() from a loop with a bunch
of complicated ifs inside into some ifs, each with a simple loop. Rearrange
router_find_exact_exit_enclave() to run a little faster. Bizarrely,
router_policy_rejects_all() shows up on oprofile, so precalculate it per
routerinfo.
svn:r17802
| Nick Mathewson | 2008-12-29 |
* | Document most undocumented variables.•••svn:r17754
| Nick Mathewson | 2008-12-23 |
* | Add DOCDOC entries for undocumented static and global variables.•••svn:r17739
| Nick Mathewson | 2008-12-22 |
* | Fix most DOCDOCs remaining and/or added by redox.•••svn:r17734
| Nick Mathewson | 2008-12-22 |
* | Add DOCDOC comments for all undocumented functions. Add missing *s to other ...•••svn:r17729
| Nick Mathewson | 2008-12-22 |
* | Use ctags and a python script to find identifiers that are never used anywher...•••svn:r17651
| Nick Mathewson | 2008-12-17 |
* | Add cross-certification to authority key certificates. Partial implementatio...•••svn:r17610
| Nick Mathewson | 2008-12-12 |
* | Now that tor_assert is no longer using a broken force-to-boolean formulation,...•••svn:r17598
| Nick Mathewson | 2008-12-11 |
* | Refactor find_first_by_keyword into one variant that can return NULL and one ...•••This makes it easier for us to avoid errors where we we forgot to list a keyword as mandatory, and easier for Coverity to detect cases like this too.
svn:r17595
| Nick Mathewson | 2008-12-11 |
* | Add a couple of sanity-checks for return values that coverity thinks we ought...•••svn:r17485
| Nick Mathewson | 2008-12-05 |
* | fix bug 880: find the end of an authority cert by looking for the first ----E...•••svn:r17470
| Nick Mathewson | 2008-12-03 |
* | The chunk_size field in memarea_t was never actually set. Remove the whole t...•••svn:r17195
| Nick Mathewson | 2008-11-05 |
* | Fix unit test failure related to intro point parsing.•••svn:r17188
| Nick Mathewson | 2008-11-03 |
* | Proposal 152 implementation from Josh Albrecht, with tweaks.•••svn:r16983
| Nick Mathewson | 2008-09-26 |
* | Add country-code support to configured node lists to implement the ever-popul...•••svn:r16966
| Nick Mathewson | 2008-09-25 |
* | make r16598 compile on 64-bit too•••svn:r16604
| Roger Dingledine | 2008-08-20 |
* | Apply proposal 121 patch 3, with minor tweaks and a few comments.•••svn:r16598
| Nick Mathewson | 2008-08-19 |
* | Do not split stored exit policy summary into type(accept/reject) and portlist...•••svn:r16553
| Peter Palfrader | 2008-08-14 |
* | Rename a field so weasel likes it better•••svn:r16552
| Peter Palfrader | 2008-08-14 |
* | Add bw to consensus•••svn:r16551
| Peter Palfrader | 2008-08-14 |
* | Parse policies and weight (bw) into routerstatuses•••svn:r16550
| Peter Palfrader | 2008-08-14 |
* | asserting(s) is better than segfaulting if it turns out to be NULL later•••svn:r16538
| Peter Palfrader | 2008-08-14 |
* | Patch cleanups from karsten•••svn:r16479
| Nick Mathewson | 2008-08-09 |
* | The first of Karsten's proposal 121 patches: configure and maintain client au...•••svn:r16475
| Nick Mathewson | 2008-08-08 |
* | r17641@31-33-44: nickm | 2008-08-05 16:07:53 -0400••• Initial conversion of uint32_t addr to tor_addr_t addr in connection_t and related types. Most of the Tor wire formats using these new types are in, but the code to generate and use it is not. This is a big patch. Let me know what it breaks for you.
svn:r16435
| Nick Mathewson | 2008-08-05 |
* | r17346@aud-055: nickm | 2008-07-24 15:37:19 +0200••• Make generic address manipulation functions work better. Switch address policy code to use tor_addr_t, so it can handle IPv6. That is a good place to start.
svn:r16178
| Nick Mathewson | 2008-07-24 |
* | r17337@aud-055: nickm | 2008-07-24 10:17:43 +0200••• Refactor the is_vote field of networkstatus_t to add a third possibility ("opinion") in addition to vote and opinion. First part of implementing proposal 147.
svn:r16166
| Nick Mathewson | 2008-07-24 |