Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-07-03 | Change extra-info "method" to "transport". | George Kadianakis | |
2012-07-03 | Mark descriptor as dirty if all managed proxies are configured. | George Kadianakis | |
2012-07-03 | Add pluggable transport info to extra-info descriptors. | George Kadianakis | |
2012-07-03 | Constify some functions. | George Kadianakis | |
2012-07-03 | Make some transports.c functions static. | George Kadianakis | |
- Also reorder functions. | |||
2012-07-03 | Refactor mp->transports to use transport_t. | George Kadianakis | |
2012-07-03 | Introduce a transport_t deep copy function. | George Kadianakis | |
2012-07-03 | Move transport-related functions from circuitbuild.c to transports.c. | George Kadianakis | |
Move 'transport_t' to transports.h, and all transport-related functions that don't rely on 'bridge_list' to transports.c. | |||
2012-07-01 | Merge branch 'maint-0.2.3' | Roger Dingledine | |
2012-07-01 | Revert "Detect bug 6252 (unexpected sendme cell)" | Roger Dingledine | |
This reverts commit c32ec9c425e9539bcc8ede95612e2d331c2cc2dd. It turns out the two sides of the circuit don't actually stay in sync, so it is perfectly normal for the circuit window on the exit relay to grow to 2000+. We should fix that bug and then reconsider this patch. | |||
2012-07-01 | Merge branch 'maint-0.2.3' | Roger Dingledine | |
2012-07-01 | Detect bug 6252 (unexpected sendme cell) | Roger Dingledine | |
I only check on circuits, not streams, since bloating your stream window past the initial circuit window can't help you much. Also, I compare to CIRCWINDOW_START_MAX so we don't have surprising races if we lower CIRCWINDOW_START for an experiment. | |||
2012-06-29 | Merge branch 'bug6255' | Nick Mathewson | |
2012-06-29 | Merge remote-tracking branch 'origin/maint-0.2.3' | Nick Mathewson | |
2012-06-29 | Fix crash bug from 4a8eaad7 (Bug 6255) | Nick Mathewson | |
We were doing a tor_strclear() on client_keys_str when it might not even be set. Fix for bug 6255; bug not in any release of Tor. Thanks to katmagic for finding this one! | |||
2012-06-29 | Fix clang warning on d4285f03df475dc. Not in any released tor. | Nick Mathewson | |
2012-06-28 | bump version to 0.2.3.18-rc-dev | Nick Mathewson | |
2012-06-28 | Merge remote-tracking branch 'origin/maint-0.2.3' | Nick Mathewson | |
2012-06-28 | Merge commit '81cd3d7ad641a8dbf' | Nick Mathewson | |
2012-06-28 | oops; forgot the changes file for bug3842 | Nick Mathewson | |
2012-06-28 | Make check-spaces happy again | Nick Mathewson | |
2012-06-28 | Fix bug 3842: add a GETINFO signal/names | Brendan C | |
Also refactor SIGNAL so that it and signal/names use the same table. (commit message by nickm) | |||
2012-06-28 | bump to 0.2.3.18-rctor-0.2.3.18-rc | Roger Dingledine | |
2012-06-28 | add a blurb for 0.2.3.18-rc, other minor cleanups | Roger Dingledine | |
2012-06-28 | add new GETINFO config/defaults | meejah | |
returns the default values for every configuration item, similar to GETINFO config/names; include a changes entry for it. Fix for bug 4971 | |||
2012-06-28 | fix grammar in comment | Roger Dingledine | |
2012-06-28 | fold in more changes entries | Roger Dingledine | |
2012-06-28 | Merge remote-tracking branch 'origin/maint-0.2.3' | Nick Mathewson | |
2012-06-28 | Clean up check-spaces block; make it cover the right files | Nick Mathewson | |
2012-06-28 | Merge remote-tracking branch 'origin/maint-0.2.3' | Nick Mathewson | |
2012-06-28 | Merge remote-tracking branch 'public/bug6244_part2' into maint-0.2.3 | Nick Mathewson | |
2012-06-28 | Merge remote-tracking branch 'origin/maint-0.2.3' | Nick Mathewson | |
2012-06-28 | Add version and bug number to 5238 changes file | Nick Mathewson | |
2012-06-28 | Downgrade 'Got a certificate, but we already have it' log message from ↵ | Andrea Shepard | |
warning to info, except when we're a dirauth (fixes bug 5238) | |||
2012-06-28 | Merge branch 'sscanf_squashed' | Nick Mathewson | |
2012-06-28 | Extend tor_sscanf so it can replace sscanf in rephist.c | Nick Mathewson | |
Fixes bug 4195 and Coverity CID 448 | |||
2012-06-27 | Fix GETINFO address-mappings/... with wildcarded addresses. | Nick Mathewson | |
2012-06-27 | Merge remote-tracking branch 'origin/maint-0.2.3' | Nick Mathewson | |
2012-06-27 | Allow wildcarded mapaddress targets in controller MAPADDRESS command | Nick Mathewson | |
2012-06-27 | merge changes files into upcoming changelog | Roger Dingledine | |
2012-06-26 | Merge remote-tracking branch 'origin/maint-0.2.3' | Nick Mathewson | |
2012-06-26 | Merge remote-tracking branch 'public/bug6227' into maint-0.2.3 | Nick Mathewson | |
2012-06-26 | Merge remote-tracking branch 'origin/maint-0.2.3' | Nick Mathewson | |
2012-06-26 | Fix a warning when using glibc's strcspn with clang. | Nick Mathewson | |
With glibc 2.15 and clang 3.0, I get warnings from where we use the strcpsn implementation in the header as strcspn(string, "="). This is apparently because clang sees that part of the strcspn macro expands to "="[2], and doesn't realize that that part of the macro is only evaluated when "="[1] != 0. | |||
2012-06-26 | Add a unit test for environment_variable_names_equal | Nick Mathewson | |
I need this because I'm about to frob that function to stop using strcspn() in order to get rid of a clang warning. | |||
2012-06-26 | Fix a compilation warning with clang 3.0 | Nick Mathewson | |
In b1ad1a1d0266a20bb we introduced an implicit (but safe) long-to-int shortening that clang didn't like. Warning not in any released version of Tor. | |||
2012-06-26 | Merge remote-tracking branch 'origin/maint-0.2.3' | Nick Mathewson | |
2012-06-26 | Downgrade message about md cache cleaning from notice to info | Nick Mathewson | |
Fix for #6238 | |||
2012-06-25 | Bump the test util/threads timeout up to 150 sec | Nick Mathewson | |
This should make some debian build systems happier. Also, increase the select() timeout to a more reasonable 100 msec. | |||
2012-06-25 | Merge remote-tracking branch 'origin/maint-0.2.3' | Nick Mathewson | |