- Feb 13, 2012
-
-
Nick Mathewson authored
Previously we'd been using "we have clock_gettime()" as a proxy for "we need -lrt to link a static libevent". But that's not really accurate: we should only add -lrt if searching for clock_gettime function adds -lrt to our libraries.
-
Nick Mathewson authored
-
-
-
- Feb 12, 2012
-
-
Roger Dingledine authored
-
- Feb 10, 2012
-
-
Nick Mathewson authored
-
Nick Mathewson authored
It was apparently getting mistaken for a problem, even though it was at notice. Fixes 5067; fix on 0.2.0.10-alpha.
-
Nick Mathewson authored
(It appeared in 0.2.3.11-alpha, but never in a released 0.2.2 afaict)
-
Nick Mathewson authored
Conflicts: src/common/tortls.c Conflict on comment near use of the new OPENSSL_V macro
-
Nick Mathewson authored
-
- Feb 09, 2012
-
-
Roger Dingledine authored
-
Roger Dingledine authored
-
Roger Dingledine authored
-
Roger Dingledine authored
-
Roger Dingledine authored
This reverts commit 55e8cae8. The conversation from irc: > weasel: i had intended to leave torrc.sample.in alone in maint-0.2.2, since i don't want to make all your stable users have to deal with a torrc change. but nickm changed it. is it in fact the case that a change in that file means a change in the deb? <weasel> it means you'll prompt every single user who ever touched their torrc <weasel> and they will be asked if they like your new version better than what they have right now <weasel> so it's not great Instead I changed the website to redirect requests for the tor-manual URL listed in maint-0.2.2's torrc.sample.in so the link will still work.
-
Karsten Loesing authored
-
- Feb 08, 2012
-
-
Nick Mathewson authored
-
Nick Mathewson authored
-
We'd only log every HeartbeatPeriod + 1 seconds. Discovered by Scott Bennett, reported as bug 4942.
-
Roger Dingledine authored
Fix broken URLs. Tell readers about the OutboundBindAddress, ExitPolicyRejectPrivate, and PublishServerDescriptor options.
-
- Feb 02, 2012
-
-
Roger Dingledine authored
-
Roger Dingledine authored
There isn't really any point to messing with it. Resolves ticket 5005.
-
- Jan 31, 2012
-
-
Nick Mathewson authored
-
-
Nick Mathewson authored
There was one MS_WINDOWS that remained because it wasn't on a macro line; a few remaining uses (and the definition!) in configure.in; and a now-nonsensical stanza of eventdns_tor.h that previously defined 'WIN32' if it didn't exist.
-
Nick Mathewson authored
This commit is completely mechanical; I used this perl script to make it: #!/usr/bin/perl -w -i.bak -p if (/^\s*\#/) { s/MS_WINDOWS/_WIN32/g; s/\bWIN32\b/_WIN32/g; }
-
Nick Mathewson authored
-
Nick Mathewson authored
Checking for "WINDOWS" is wrong; our magic macro is MS_WINDOWS Fixes bug 4973; bugfix on 0.2.3.11-alpha.
-
- Jan 27, 2012
-
-
Roger Dingledine authored
should reduce the risk of oscillation if our 0.2.2 bridge comes and goes
-
Nick Mathewson authored
-
- Jan 25, 2012
-
-
Roger Dingledine authored
Previously the client would ask the bridge for microdescriptors, which are only supported in 0.2.3.x and later, and then fail to bootstrap when it didn't get the answers it wanted. Fixes bug 4013; bugfix on 0.2.3.2-alpha. The fix here is to revert to using normal descriptors if any of our bridges are known to not support microdescs. This is not ideal, a) because we'll start downloading a microdesc consensus as soon as we get a bridge descriptor, and that will waste time if we later get a bridge descriptor that tells us we don't like microdescriptors; and b) by changing our mind we're leaking to our other bridges that we have an old-version bridge. The alternate fix would have been to change we_use_microdescriptors_for_circuits() to ask if *any* of our bridges can support microdescriptors, and then change the directory logic that picks a bridge to only select from those that do. For people living in the future, where 0.2.2.x is obsolete, there won't be a difference. Note that in either of these potential fixes, we have risk of oscillation if our one funny-looking bridges goes away / comes back.
-
- Jan 23, 2012
-
-
Roger Dingledine authored
resolves bug 4950 (fixes a bug on commit aba7bb70 from #2850)
-
Roger Dingledine authored
-
Roger Dingledine authored
-
Sebastian Hahn authored
This fixes a compile warning on Windows. Fixes bug 4946, not in any released version.
-
Roger Dingledine authored
-
- Jan 22, 2012
-
-
Roger Dingledine authored
-
Roger Dingledine authored
-
Roger Dingledine authored
-
- Jan 21, 2012
-
-
George Kadianakis authored
Document ServerTransportPlugin and the managed proxy version of ClientTransportPlugin.
-