summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-02-22Mark 160 and 161 as Finished.tor-0.2.2.9-alphaNick Mathewson
2010-02-22elevate a changelog entry, and get my mailto out of the man pageRoger Dingledine
2010-02-22Merge remote branch 'sebastian/coverity'Nick Mathewson
2010-02-22Merge remote branch 'sebastian/bug1254'Nick Mathewson
2010-02-22Make expand_filename into a tor_strdup() alias on windows.Nick Mathewson
On Windows, we don't have a notion of ~ meaning "our homedir", so we were deliberately using an #ifdef to avoid calling expand_filename() in multiple places. This is silly: The right place to turn a function into a no-op on a single platform is in the function itself, not in every single call-site.
2010-02-22Remove some redundant code in options_save_current()Sebastian Hahn
get_torrc_fname() does the same thing we did in this code, so let's replace it.
2010-02-22Expand homedirs in paths passed to tor-checkkeySebastian Hahn
This is so that coverity stops complaining about using a user-supplied string with the open() syscall. Let's see if it works.
2010-02-22Zero a cipher completely before freeing itSebastian Hahn
We used to only zero the first ptrsize bytes of the cipher. Since cipher is large enough, we didn't zero too many bytes. Discovered and fixed by ekir. Fixes bug 1254.
2010-02-22Break early on unknown extendcircuit purposeSebastian Hahn
Don't continue handling EXTENDCIRCUIT messages when we get an unknown purpose.
2010-02-22Fix a memory leak, found by coveritySebastian Hahn
2010-02-22Remove some redundand code in control.cSebastian Hahn
Found by coverity
2010-02-22Merge commit 'sebastian/osxinstructions'Roger Dingledine
2010-02-22Update the osx dmg creation instructionsSebastian Hahn
Make sure we follow basic whitespace sanity principles, update a few links
2010-02-22network-status-version must come first in a vote/consensusSebastian Hahn
Spec conformance issue: The code didn't force the network-status-version token to be the first token in a v3 vote or consensus. Problem discovered by Parakeep.
2010-02-22we have two faqs for nowRoger Dingledine
2010-02-22we deleted AUTHORS, so don't put it in the tarballRoger Dingledine
2010-02-22Merge branch 'maint-0.2.1' into newRoger Dingledine
Conflicts: ChangeLog configure.in contrib/tor-mingw.nsi.in src/win32/orconfig.h
2010-02-22prepare for 0.2.2.9-alphaRoger Dingledine
2010-02-21put 0.2.1.24 in release notes tootor-0.2.1.24Roger Dingledine
2010-02-21bump to 0.2.1.24Roger Dingledine
2010-02-21minor fixes in proposal 169Roger Dingledine
still need to finish reading it, but so far so good
2010-02-21fix typo and garbage grammarRoger Dingledine
2010-02-20Merge remote branch 'public/cbt-status'Nick Mathewson
Conflicts: ChangeLog
2010-02-19Merge remote branch 'sebastian/bug1143'Nick Mathewson
2010-02-19Make the DNSPort option work with libevent 2.xSebastian Hahn
We need to use evdns_add_server_port_with_base() when configuring our DNS listener, because libevent segfaults otherwise. Add a macro in compat_libevent.h to pick the correct implementation depending on the libevent version. Fixes bug 1143, found by SwissTorExit
2010-02-18Future-proof the control protocol by ignoring unrecognized keyword argsNick Mathewson
2010-02-18Make more arguments in control.c properly case-insensitive.Nick Mathewson
2010-02-18Add changelog entry for CBT testing work.Mike Perry
2010-02-18Describe the recent timeouts reallocation behavior.Mike Perry
2010-02-18Move CBT params into consensus.Mike Perry
2010-02-18Add an event for a case where we drop guards.Mike Perry
Also add a comment about an odd CBT timeout edgecase.
2010-02-18Allow "EXTENDCIRCUIT 0" to omit a path.Mike Perry
2010-02-18Add BUILDTIMEOUT_SET event for CBT stress testing.Mike Perry
2010-02-18Merge remote branch 'origin/maint-0.2.1'Nick Mathewson
Conflicts: ChangeLog configure.in contrib/tor-mingw.nsi.in src/win32/orconfig.h
2010-02-18Bump version to 0.2.1.23-devNick Mathewson
2010-02-18Add changelog for latest openssl fixNick Mathewson
2010-02-18Fix compileSebastian Hahn
2010-02-17Even more conservative option-setting for SSL renegotiation.Nick Mathewson
This time, set the SSL3_FLAGS_ALLOW_UNSAFE_RENEGOTIATION flag on every version before OpenSSL 0.9.8l. I can confirm that the option value (0x0010) wasn't reused until OpenSSL 1.0.0beta3.
2010-02-17add in the apple incantations to get tls renegotiation to work.Andrew Lewman
2010-02-17fix the win32 build instructions for openssl.Andrew Lewman
2010-02-16Merge commit 'sebastian/oldstuff'Roger Dingledine
Conflicts: ChangeLog
2010-02-16Remove legacy files from main source distributionSebastian Hahn
The AUTHORS file was pretty outdated. Its contents moved onto the people page. Design paper and roadmaps moved to the projects directory in svn.
2010-02-15Build correctly with Libevent 2.0.4-alpha and laterNick Mathewson
2010-02-13give it a blurb, update the datetor-0.2.1.23Roger Dingledine
2010-02-12Remove the --enable-iphone option as needless.Nick Mathewson
On or-talk, Marco Bonetti reports that recent iPhone SDKs build Tor fine without it.
2010-02-13Remove the --enable-debug option for configure, it didn't do anything.Sebastian Hahn
2010-02-12new dannenberg address; make moria2's demise official.Roger Dingledine
2010-02-12prepare for 0.2.1.23Roger Dingledine
2010-02-11Clean up whitespaceNick Mathewson
2010-02-11updated win32 build instructions with new mingw and msys versions.Andrew Lewman