Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-19 | Better fix for 2190: defer libevent->controller messages instead of dropping | Nick Mathewson | |
2010-11-19 | Do not send Libevent log messages to a controller. | Nick Mathewson | |
Doing so could make Libevent call Libevent from inside a Libevent logging call, which is a recipe for reentrant confusion and hard-to-debug crashes. This would especially hurt if Libevent debug-level logging is enabled AND the user has a controller watching for low-severity log messages. Fix bug 2190; fix on 0.1.0.2-rc. | |||
2010-11-19 | Merge branch 'fix2183', remote branch 'rransom/fix2195-v2' into maint-0.2.2 | Nick Mathewson | |
2010-11-19 | Add changes file for bug2195. | Robert Ransom | |
2010-11-15 | merge in more changelog entries | Roger Dingledine | |
2010-11-15 | Merge commit 'nickm/1776_redux_v1' into maint-0.2.2 | Roger Dingledine | |
2010-11-15 | Merge branch 'bug2000_nm_022' into maint-0.2.2 | Nick Mathewson | |
2010-11-15 | changes entry for nopublish removal in 5040c855d | Nick Mathewson | |
2010-11-15 | Merge remote branch 'sebastian/manpagefixups' into maint-0.2.2 | Nick Mathewson | |
2010-11-15 | Rate-limit unsafe socks warning | Sebastian Hahn | |
Pick 5 seconds as the limit. 5 seconds is a compromise here between making sure the user notices that the bad behaviour is (still) happening and not spamming their log too much needlessly (the log message is pretty long). We also keep warning every time if safesocks is specified, because then the user presumably wants to hear about every blocked instance. (This is based on the original patch by Sebastian, then backported to 0.2.2 and with warnings split into their own function.) | |||
2010-11-15 | Try harder not to exceed the 50 KB extra-info descriptor limit. | Karsten Loesing | |
Our checks that we don't exceed the 50 KB size limit of extra-info descriptors apparently failed. This patch fixes these checks and reserves another 250 bytes for appending the signature. Fixes bug 2183. | |||
2010-11-12 | Add changes file for bug1125 | Nick Mathewson | |
2010-11-11 | Merge remote branch 'sebastian/remove-osx-expert-package' into maint-0.2.2 | Nick Mathewson | |
2010-11-11 | Merge branch 'maint-0.2.1' into maint-0.2.2 | Roger Dingledine | |
2010-11-11 | let unpublished bridges learn their ip address too | Roger Dingledine | |
2010-11-10 | Merge remote branch 'origin/maint-0.2.1' into maint-0.2.2 | Nick Mathewson | |
2010-11-10 | Enforce multiplicity rules when parsing annotations. | Nick Mathewson | |
We would never actually enforce multiplicity rules when parsing annotations, since the counts array never got entries added to it for annotations in the token list that got added by earlier calls to tokenize_string. Found by piebeer. | |||
2010-11-10 | Fix a bug where seting allow_annotations==0 only ignores annotations, but ↵ | Nick Mathewson | |
does not block them | |||
2010-11-10 | Document hs dht min uptime change in privnets | Sebastian Hahn | |
In f87c6f100d2faf8d we made it so that MinUptimeHidServDirectoryV2 defaults to 0 if TestingTorNetwork is set. Add a manpage entry and a changes file. | |||
2010-11-10 | Synx manpage and source wrt option capitalization | Sebastian Hahn | |
We had a spelling discrepancy between the manpage and the source code for some option. Resolve these in favor of the manpage, because it makes more sense (for example, HTTP should be capitalized). | |||
2010-11-10 | Remove the torrc.complete file. | Sebastian Hahn | |
We haven't been keeping it up to date, and the manpage exists as a replacement for users who want an overview of all available options. | |||
2010-11-10 | Remove everything related to os x expert package | Sebastian Hahn | |
We decided to no longer ship expert packages for OS X because they're a lot of trouble to keep maintained and confuse users. For those who want a tor on OS X without Vidalia, macports is a fine option. Alternatively, building from source is easy, too. The polipo stuff that is still required for the Vidalia bundle build can now be found in the torbrowser repository, git://git.torproject.org/torbrowser.git. | |||
2010-11-09 | fold the changes files into a changelog | Roger Dingledine | |
2010-11-06 | move to the november 1 maxmind geoip db | Roger Dingledine | |
2010-11-02 | Fix the assert in bug 1776 | Nick Mathewson | |
In the case where old_router == NULL but sdmap has an entry for the router, we can currently safely infer that the old_router was not a bridge. Add an assert to ensure that this remains true, and fix the logic not to die with the tor_assert(old_router) call. | |||
2010-10-21 | Merge remote branch 'hoganrobert/bug1859' into maint-0.2.2 | Nick Mathewson | |
2010-10-21 | Merge remote branch 'sebastian/relay_early_rend' into maint-0.2.2 | Nick Mathewson | |
2010-10-20 | Add a ! to directory_caches_dir_info() to fix a logic error | Nick Mathewson | |
We want to fetch directory info more aggressively if we need it to refuseunknownexits. Thus, we'll want it if our exit policy is _NOT_ reject *. | |||
2010-10-20 | Merge branch 'bug2097' into maint-0.2.2 | Nick Mathewson | |
2010-10-20 | Fix a read of a freed pointer while in set_current_consensus | Nick Mathewson | |
Found by rransom while working on issue #988. Bugfix on 0.2.2.17-alpha. Fixes bug 2097. | |||
2010-10-20 | Use ssp-buffer-size param when hardening | Sebastian Hahn | |
We used to enable ssp-buffer-size=1 only when building with --enable-gcc-warnings. That would result in warnings (and no protection for small arrays) when building with --enable-gcc-hardening without enabling warnings, too. Fixes bug 2031. Also remove an XXX: We now allow to build with -fstack-protector by using --enable-gcc-hardening. | |||
2010-10-18 | Send relay_early cells in rend circs | Sebastian Hahn | |
There are no relay left that run version 0.2.1.3 through 0.2.1.18, so changing this behaviour should be safe now. | |||
2010-10-17 | Issues with router_get_by_nickname() (3) | Robert Hogan | |
Add changes file | |||
2010-10-11 | Fix MIPSpro and time_t signedness detection | Sebastian Hahn | |
3d6e2830876 silenced the autogen.sh warnings as it was supposed to, but introduced two bugs. Fix them. | |||
2010-10-04 | Correct a couple of log messages in tortls.c | Robert Ransom | |
2010-10-04 | Merge remote branch 'origin/maint-0.2.1' into maint-0.2.2 | Nick Mathewson | |
2010-10-04 | Update to the October 1 2010 Maxmind GeoLite Country database. | Karsten Loesing | |
2010-10-01 | log when we guess our ip address, not just when we fail | Roger Dingledine | |
2010-09-30 | write up a changelog file | Roger Dingledine | |
2010-09-30 | Add a changes file for the bug1912 fix | Sebastian Hahn | |
2010-09-29 | Merge branch 'bug1772' into maint-0.2.2 | Roger Dingledine | |
2010-09-29 | Merge commit 'mikeperry/bug1739' into maint-0.2.2 | Roger Dingledine | |
2010-09-29 | Merge commit 'mikeperry/bug1740' into maint-0.2.2 | Roger Dingledine | |
2010-09-29 | Add changes file. | Mike Perry | |
2010-09-29 | Add changes file. | Mike Perry | |
2010-09-29 | Add changes file. | Mike Perry | |
2010-09-28 | a changelog entry for the entrynodes retry mess | Roger Dingledine | |
2010-09-28 | Merge branch 'maint-0.2.1' into maint-0.2.2 | Roger Dingledine | |
2010-09-28 | actually retry bridges when your network goes away | Roger Dingledine | |
2010-09-27 | the actual changelog entry this time | Roger Dingledine | |