Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-07-31 | Merge branch 'maint-0.2.3' into release-0.2.3 | Roger Dingledine | |
2012-07-31 | trivial grammar fix | Roger Dingledine | |
2012-07-23 | Merge remote-tracking branch 'asn/bug6274_take3' into maint-0.2.3 | Nick Mathewson | |
2012-07-20 | changes file for bug 6436. | Nick Mathewson | |
2012-07-20 | Clarify how to build asciidoc files using homebrew on Mac OS X | Steven Murdoch | |
2012-07-18 | Better handling of server managed proxies when Tor is not a relay. | George Kadianakis | |
2012-07-18 | Merge branch 'smartlist_shorten' into maint-0.2.3 | Nick Mathewson | |
2012-07-18 | Tweaks to 6400 changes file and docs as suggested by arma | Nick Mathewson | |
2012-07-17 | Improve message on spurious SOCKSListenAddress | Nick Mathewson | |
2012-07-17 | Fix the remaining instances of nexted SMARTLIST_FOREACH | Nick Mathewson | |
2012-07-17 | Change all SMARTLIST_FOREACH loops of >=10 lines to use BEGIN/END | Nick Mathewson | |
The SMARTLIST_FOREACH macro is more convenient than BEGIN/END when you have a nice short loop body, but using it for long bodies makes your preprocessor tell the compiler that all the code is on the same line. That causes grief, since compiler warnings and debugger lines will all refer to that one line. So, here's a new style rule: SMARTLIST_FOREACH blocks need to be short. | |||
2012-07-17 | Allow TestingTorNetwork when alternate dir and bridge authorities are set. | Linus Nordberg | |
Allow TestingTorNetwork when AlternateDirAuthority and AlternateBridgeAuthority is set even if DirServer is not. | |||
2012-07-16 | Refer to the correct variable in a loop when parsing entry guard state | Nick Mathewson | |
Fixes bug 6397 and coverity issue 709599. Bugfix on 0.2.3.17-beta. | |||
2012-07-16 | Coverity 709056: Check return value on fputs in tor-gencert | Nick Mathewson | |
2012-07-16 | Improve Alternate*Authority docs. Bug 6387. | Nick Mathewson | |
2012-07-07 | releases are supposed to have blurbs | Roger Dingledine | |
2012-07-06 | fold in latest changes itemtor-0.2.3.19-rc | Roger Dingledine | |
also realize that there's one too many columns (now that i'm in air conditioning and my brain has resumed working) | |||
2012-07-06 | Merge branch 'maint-0.2.3' into release-0.2.3 | Roger Dingledine | |
2012-07-06 | Merge branch 'maint-0.2.2' into maint-0.2.3 | Roger Dingledine | |
2012-07-06 | Revert to the May 2012 geoip db | Roger Dingledine | |
The June 2012 db marks too many relays as country "A1". Addresses bug 6334. | |||
2012-07-06 | shuffle changelog entries | Roger Dingledine | |
2012-07-06 | fold changes entries into changelog | Roger Dingledine | |
2012-07-06 | bump to 0.2.3.19-rc | Roger Dingledine | |
2012-07-06 | Merge remote-tracking branch 'nickm/bug6271_part_a' into maint-0.2.3 | Roger Dingledine | |
2012-07-06 | Fix port range in parse_port_range(). | George Kadianakis | |
2012-07-06 | Fix a bug handling SENDME cells on nonexistent streams. | Nick Mathewson | |
This could result in bizarre window values. Report and patch contributed pseudymously. Fixes part of bug 6271. This bug was introduced before the first Tor release, in svn commit r152. (bug 6271, part a.) | |||
2012-07-05 | On windows, ENOBUFS starts with WSA. #6296. Fix on 0.2.18-rc | Nick Mathewson | |
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 | 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-28 | bump version to 0.2.3.18-rc-dev | Nick Mathewson | |
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 | fix grammar in comment | Roger Dingledine | |
2012-06-28 | fold in more changes entries | Roger Dingledine | |
2012-06-28 | Clean up check-spaces block; make it cover the right files | Nick Mathewson | |
2012-06-28 | Merge remote-tracking branch 'public/bug6244_part2' into 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-27 | Fix GETINFO address-mappings/... with wildcarded addresses. | 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 'public/bug6227' into 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 | 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 | Don't do DNS lookups when parsing corrupted managed proxy messages. | George Kadianakis | |
The functions parse_{s,c}method_line() were using tor_addr_port_lookup() which is capable of doing DNS lookups. DNS lookups should not be necessary when parsing {C,S}METHOD lines. | |||
2012-06-25 | Merge remote-tracking branch 'public/bug6225' into maint-0.2.3 | Nick Mathewson | |
2012-06-23 | Catch a few more K&R violations with make check-spaces | Nick Mathewson | |
We now catch bare {s that should be on the previous line with a do, while, if, or for, and elses that should share a line with their preceding }. That is, if (foo) { and if (foo) { ... } else are now detected. We should think about maybe making Tor uncrustify-clean some day, but configuring uncrustify is an exercise in bizarreness, and reformatting huge gobs of Tor is always painful. |