summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-01-03Merge remote branch 'origin/maint-0.2.2'Nick Mathewson
2011-01-03Bump copyright statements to 2011 (0.2.2)Nick Mathewson
2011-01-03Merge remote branch 'origin/maint-0.2.1' into maint-0.2.2Nick Mathewson
Conflicts: src/common/test.h src/or/test.c
2011-01-03Bump copyright statements to 2011Nick Mathewson
2010-12-22Disable stats requiring geoip info if we have noneSebastian Hahn
In other parts of the code we will otherwise attempt to collect these statistics, and that will lead to crashes.
2010-12-22Correct a broken faq link in the INSTALL fileRoger Dingledine
2010-12-21Merge remote branch 'karsten/dirreq-stats-default'Nick Mathewson
Conflicts: src/or/config.c
2010-12-21Merge remote branch 'origin/maint-0.2.2'Nick Mathewson
2010-12-21Merge remote branch 'public/bug2060' into maint-0.2.2Nick Mathewson
2010-12-21Merge remote branch 'origin/maint-0.2.2'Nick Mathewson
2010-12-21Merge remote branch 'rransom/bug2190_the_hard_way' into maint-0.2.2Nick Mathewson
2010-12-21Merge remote branch 'origin/maint-0.2.1' into maint-0.2.2Nick Mathewson
2010-12-21Merge remote branch 'public/bug2190_021' into maint-0.2.1Nick Mathewson
2010-12-20remove duplicate (wrong) changelog entryRoger Dingledine
2010-12-20forward-port the two recent changelog entriesRoger Dingledine
2010-12-19Merge branch 'maint-0.2.2'Roger Dingledine
2010-12-16Merge branch 'maint-0.2.1' into maint-0.2.2Roger Dingledine
2010-12-16put 0.2.1.28 release notes in place tooRoger Dingledine
2010-12-16Merge branch 'maint-0.2.1' into maint-0.2.2Roger Dingledine
2010-12-16Merge commit 'nickm/fix_security_bug_022' into maint-0.2.2Roger Dingledine
2010-12-16Merge commit 'nickm/fix_security_bug_021' into maint-0.2.1Roger Dingledine
2010-12-16Turn on epoll changelists with libevent 2.0.9-rc and laterNick Mathewson
Libevent 2.0 has a "changelist" feature that avoids making redundant syscalls if we wind up doing a lot of event_add/event_del operations on the same fd in a row. Unfortunately, due to a weird design choice in Linux, it doesn't work right with epoll when multiple fds refer to the same socket (e.g., one is a dup() of the other). We don't dup() anything we give to Libevent, though, so it is safe for us to explicitly turn this feature on.
2010-12-16Merge remote branch 'origin/maint-0.2.2'Nick Mathewson
2010-12-16Merge remote branch 'origin/maint-0.2.1' into maint-0.2.2Nick Mathewson
2010-12-16Change gabelmoo's IP address and ports.Karsten Loesing
2010-12-15Merge remote branch fix_security_bug_021 into fix_security_bug_022Nick Mathewson
Conflicts: src/common/memarea.c src/or/or.h src/or/rendclient.c
2010-12-15Add a changelog entryNick Mathewson
2010-12-15Make payloads into uint8_t.Nick Mathewson
This will avoid some signed/unsigned assignment-related bugs.
2010-12-14Merge branch 'crypto_ideas'Nick Mathewson
2010-12-14Reformat circuit crypto requirements as a proposal-like documentNick Mathewson
2010-12-14Add start of rransom's notes on tor crypto requirementsNick Mathewson
2010-12-14Merge remote branch 'origin/maint-0.2.2'Nick Mathewson
2010-12-14Merge remote branch 'origin/maint-0.2.1' into maint-0.2.2Nick Mathewson
Conflicts: src/config/geoip
2010-12-13List another place router identity keys are used.Robert Ransom
2010-12-13Fix typos.Robert Ransom
2010-12-13Add a proposal-ideas document for crypto migration.Nick Mathewson
2010-12-13Have all of our allocation functions and a few others check for underflowNick Mathewson
It's all too easy in C to convert an unsigned value to a signed one, which will (on all modern computers) give you a huge signed value. If you have a size_t value of size greater than SSIZE_T_MAX, that is way likelier to be an underflow than it is to be an actual request for more than 2gb of memory in one go. (There's nothing in Tor that should be trying to allocate >2gb chunks.)
2010-12-13Base SIZE_T_CEILING on SSIZE_T_MAX.Nick Mathewson
2010-12-11Only add each log message to pending_cb_messages once.Robert Ransom
2010-12-11Don't call flush_pending_log_callbacks while logging LD_NOCB messages.Robert Ransom
Found by boboper.
2010-12-11start reformatting and editing the pluggable-transport proposalNick Mathewson
2010-12-10convert draft pluggable transport proposal to plaintextNick Mathewson
2010-12-08Update to the December 1 2010 Maxmind GeoLite Country database.Karsten Loesing
2010-12-07Merge remote branch 'origin/maint-0.2.2'Nick Mathewson
2010-12-07Merge branch 'bug2081_followup_022' into maint-0.2.2Nick Mathewson
2010-12-07Reject relay versions older than 0.2.0.26-rcNick Mathewson
This was the first version to cache the correct directory information. Fixes bug 2156.
2010-12-07revise bug2081_followup changelogNick Mathewson
2010-12-07Merge branch 'isolated-streams'Nick Mathewson
Conflicts: doc/spec/proposals/000-index.txt
2010-12-07Revise proposal 171 from start to finishNick Mathewson
The big semantic change is to make the IsolateFoo options exist on a per-client-port basis.
2010-12-06Merge remote branch 'origin/maint-0.2.2'Nick Mathewson