Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-01-03 | Merge remote branch 'origin/maint-0.2.2' | Nick Mathewson | |
2011-01-03 | Merge remote branch 'sebastian/bug2314' into maint-0.2.2 | Nick Mathewson | |
2011-01-03 | Tweak GETINFO process/* code: no need to print an int as anything other than %d | Nick Mathewson | |
2011-01-03 | Implementing getinfo options for the pid, uid, user, and descriptor limit as ↵ | Damian Johnson | |
per proposal 173. | |||
2011-01-03 | Add a note about _compare_int not doing overflow right | Nick Mathewson | |
2011-01-03 | Fix a wide line in rephist.c | Nick Mathewson | |
2011-01-03 | Merge remote branch 'origin/maint-0.2.2' | Nick Mathewson | |
2011-01-03 | Fix a function formatting warning in rephist.c | Nick Mathewson | |
2011-01-03 | Merge remote branch 'origin/maint-0.2.1' into maint-0.2.2 | Nick Mathewson | |
Conflicts: src/or/routerparse.c | |||
2011-01-03 | fix whitespace issues | Nick Mathewson | |
2011-01-03 | Bump copyright statements to 2011 (master) | Nick Mathewson | |
2011-01-03 | Merge remote branch 'origin/maint-0.2.2' | Nick Mathewson | |
2011-01-03 | Bump copyright statements to 2011 (0.2.2) | Nick Mathewson | |
2011-01-03 | Merge remote branch 'origin/maint-0.2.1' into maint-0.2.2 | Nick Mathewson | |
Conflicts: src/common/test.h src/or/test.c | |||
2011-01-03 | Bump copyright statements to 2011 | Nick Mathewson | |
2010-12-27 | Fix compile wanrings revealed by gcc 4.5 on mingw | Sebastian Hahn | |
2010-12-22 | Disable stats requiring geoip info if we have none | Sebastian Hahn | |
In other parts of the code we will otherwise attempt to collect these statistics, and that will lead to crashes. | |||
2010-12-22 | Correct a broken faq link in the INSTALL file | Roger Dingledine | |
2010-12-21 | Merge remote branch 'karsten/dirreq-stats-default' | Nick Mathewson | |
Conflicts: src/or/config.c | |||
2010-12-21 | Merge remote branch 'origin/maint-0.2.2' | Nick Mathewson | |
2010-12-21 | Merge remote branch 'public/bug2060' into maint-0.2.2 | Nick Mathewson | |
2010-12-21 | Merge remote branch 'origin/maint-0.2.2' | Nick Mathewson | |
2010-12-21 | Merge remote branch 'rransom/bug2190_the_hard_way' into maint-0.2.2 | Nick Mathewson | |
2010-12-21 | Merge remote branch 'origin/maint-0.2.1' into maint-0.2.2 | Nick Mathewson | |
2010-12-21 | Merge remote branch 'public/bug2190_021' into maint-0.2.1 | Nick Mathewson | |
2010-12-20 | remove duplicate (wrong) changelog entry | Roger Dingledine | |
2010-12-20 | forward-port the two recent changelog entries | Roger Dingledine | |
2010-12-19 | Merge branch 'maint-0.2.2' | Roger Dingledine | |
2010-12-16 | Merge branch 'maint-0.2.1' into maint-0.2.2 | Roger Dingledine | |
2010-12-16 | put 0.2.1.28 release notes in place too | Roger Dingledine | |
2010-12-16 | Merge branch 'maint-0.2.1' into maint-0.2.2 | Roger Dingledine | |
2010-12-16 | Merge commit 'nickm/fix_security_bug_022' into maint-0.2.2 | Roger Dingledine | |
2010-12-16 | Merge commit 'nickm/fix_security_bug_021' into maint-0.2.1 | Roger Dingledine | |
2010-12-16 | Turn on epoll changelists with libevent 2.0.9-rc and later | Nick 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-16 | Merge remote branch 'origin/maint-0.2.2' | Nick Mathewson | |
2010-12-16 | Merge remote branch 'origin/maint-0.2.1' into maint-0.2.2 | Nick Mathewson | |
2010-12-16 | Change gabelmoo's IP address and ports. | Karsten Loesing | |
2010-12-15 | Merge remote branch fix_security_bug_021 into fix_security_bug_022 | Nick Mathewson | |
Conflicts: src/common/memarea.c src/or/or.h src/or/rendclient.c | |||
2010-12-15 | Add a changelog entry | Nick Mathewson | |
2010-12-15 | Make payloads into uint8_t. | Nick Mathewson | |
This will avoid some signed/unsigned assignment-related bugs. | |||
2010-12-14 | Merge branch 'crypto_ideas' | Nick Mathewson | |
2010-12-14 | Reformat circuit crypto requirements as a proposal-like document | Nick Mathewson | |
2010-12-14 | Add start of rransom's notes on tor crypto requirements | Nick Mathewson | |
2010-12-14 | Merge remote branch 'origin/maint-0.2.2' | Nick Mathewson | |
2010-12-14 | Merge remote branch 'origin/maint-0.2.1' into maint-0.2.2 | Nick Mathewson | |
Conflicts: src/config/geoip | |||
2010-12-13 | List another place router identity keys are used. | Robert Ransom | |
2010-12-13 | Fix typos. | Robert Ransom | |
2010-12-13 | Add a proposal-ideas document for crypto migration. | Nick Mathewson | |
2010-12-13 | Have all of our allocation functions and a few others check for underflow | Nick 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-13 | Base SIZE_T_CEILING on SSIZE_T_MAX. | Nick Mathewson | |