summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-08-19minor changelog revisiontor-0.2.0.5-alphaRoger Dingledine
svn:r11190
2007-08-19bump to 0.2.0.5-alpha since we're getting closeRoger Dingledine
svn:r11189
2007-08-19tweak changelog entryRoger Dingledine
svn:r11187
2007-08-19backport candidate (revert part of r9350):Roger Dingledine
Expire application streams in all cases if they've been around longer than SocksTimeout. Right now there are some cases where the stream will live forever, demanding a new circuit every 15 seconds. Bugfix on 0.1.2.7-alpha; fixes bug 454; reported by lodger. svn:r11186
2007-08-19oh, and make it compile tooRoger Dingledine
svn:r11185
2007-08-19generalize circuit_find_to_cannibalize() so it knows whatRoger Dingledine
purpose circuit we're planning to become svn:r11184
2007-08-19numerous cleanups in the control-spec. patch from tup.Roger Dingledine
svn:r11182
2007-08-19Fix a bug in ADDRMAP controller replies that would sometimesRoger Dingledine
try to print a NULL. Patch from tup. svn:r11181
2007-08-19a low-priority todo item we should do sometimeRoger Dingledine
svn:r11180
2007-08-19get rid of a debugging message that non v3-authorities wereRoger Dingledine
seeing too, and that doesn't seem to be critical svn:r11179
2007-08-19Update mingw build instructions to remove patent encumberances.Andrew Lewman
svn:r11178
2007-08-19clean up the instructions a bitAndrew Lewman
svn:r11175
2007-08-19Move event.h include down a stanza to make mingw happy.Andrew Lewman
svn:r11174
2007-08-19backport candidate:Roger Dingledine
Refuse to start with certain directory authority keys, and encourage people using them to stop. svn:r11171
2007-08-19changelog line for r11168Roger Dingledine
svn:r11170
2007-08-19clean up changelog in preparation for releaseRoger Dingledine
svn:r11169
2007-08-19do another cleanup pass on the sample torrcRoger Dingledine
svn:r11168
2007-08-18 r14661@catbus: nickm | 2007-08-18 15:38:08 -0400Nick Mathewson
Long overdue test.c refactoring: add --warn/--notice/--info/--debug command line options to set logging levels, and let the user specify which tests to run from the commmand line. svn:r11167
2007-08-18 r14659@catbus: nickm | 2007-08-18 14:19:34 -0400Nick Mathewson
When we are loading state info from disk, never believe any date in the future. Doing so can keep us from retrying guards, rotating onion keys, storing bandwidth info, etc. Fixes bug 434, and others. Backport candidate, once it has been tested. svn:r11166
2007-08-18 r14657@catbus: nickm | 2007-08-18 12:59:03 -0400Nick Mathewson
Notes about library versions in mingw instructions svn:r11165
2007-08-18 r14651@catbus: nickm | 2007-08-17 21:37:03 -0400Nick Mathewson
Another attempt to confirm to msvc for bug 482. svn:r11162
2007-08-17Remove routerlist_check_bug_417() and all its calls. There is still some ↵Peter Palfrader
more debugging code left, marked with XXXs svn:r11161
2007-08-17redefine BITARRAY_MASK as a function of BITARRAY_SHIFTPeter Palfrader
svn:r11160
2007-08-17 r14641@catbus: nickm | 2007-08-17 17:53:14 -0400Nick Mathewson
Stop running ./configure from autogen.sh. "Let's see if anybody complains!" says Roger. svn:r11159
2007-08-17Do not run configure from autogen.sh. Also switch to set -e instead of ↵Peter Palfrader
linking all the commands using && svn:r11158
2007-08-17 r14639@catbus: nickm | 2007-08-17 17:45:28 -0400Nick Mathewson
Compile without warnings on MinGW, even with --enable-gcc-warnings enabled. svn:r11157
2007-08-17 r14634@catbus: nickm | 2007-08-17 16:43:49 -0400Nick Mathewson
Try to fix bug 482: do not rely on s6_addr16 or s6_addr32 on MSVC. How ugly. svn:r11155
2007-08-17cleanups on r11138. it's ready to backport now, i think (i hope).Roger Dingledine
svn:r11154
2007-08-17 r14630@catbus: nickm | 2007-08-17 16:30:42 -0400Nick Mathewson
Functions to save and load MTBF information. svn:r11153
2007-08-17 r14629@catbus: nickm | 2007-08-17 16:14:05 -0400Nick Mathewson
spec clarification noted by Stefan K. svn:r11152
2007-08-17 r14626@catbus: nickm | 2007-08-17 11:20:05 -0400Nick Mathewson
Link note_router_reachable and note_router_unreachable to mtbf code. decouple mtbf from connect/disconnect. log it in USR1. do not blow it away on cleanup if we are an authority. svn:r11151
2007-08-17help nick work on proposal 108Roger Dingledine
svn:r11148
2007-08-16 r14612@catbus: nickm | 2007-08-16 15:23:35 -0400Nick Mathewson
Initial work on proposal 108: have rephist.c track the information we want to be tracking for OR stability. svn:r11147
2007-08-16clean up the cookieauth stuffRoger Dingledine
svn:r11146
2007-08-16 r14606@catbus: nickm | 2007-08-16 13:45:01 -0400Nick Mathewson
Implement CookieAuthFile and CookieAuthFileGroupReadable. Backport candidate. svn:r11141
2007-08-16 r14600@catbus: nickm | 2007-08-16 13:30:22 -0400Nick Mathewson
Implement proposal 119. Backport candidate. svn:r11138
2007-08-16 r14596@catbus: nickm | 2007-08-16 12:56:18 -0400Nick Mathewson
Patches to proposal 119 as described on or-dev. Mark 119 as "Accepted" svn:r11137
2007-08-15 r14583@catbus: nickm | 2007-08-15 17:52:35 -0400Nick Mathewson
Fix a bug caught by Kate: when we switched from masks to bits in 0.2.0.3-alpha, we added a spurious ! that made us never believe that any address fell inside a virtual address range. While we're at it, save a trip around the loop in the common case. svn:r11129
2007-08-15 r14581@catbus: nickm | 2007-08-15 16:46:42 -0400Nick Mathewson
Correct GETINFO guard-nodes spec based on comments from pei hanru. svn:r11128
2007-08-15 r14051@Kushana: nickm | 2007-08-15 15:55:36 -0400Nick Mathewson
Fix an XXXX020 and a few DOCDOCs. svn:r11127
2007-08-15 r14050@Kushana: nickm | 2007-08-15 15:21:02 -0400Nick Mathewson
Eliminate tons of repeated code in directory_handle_command_get. svn:r11126
2007-08-15 r14049@Kushana: nickm | 2007-08-15 14:43:56 -0400Nick Mathewson
Implement code to serve pending votes, consensuses, and signatures. svn:r11125
2007-08-15 r14047@Kushana: nickm | 2007-08-15 13:57:39 -0400Nick Mathewson
fix a really nasty bug in v3 authorities: only set v3_digest in trusted_dir_server_t for v3 authorities. svn:r11124
2007-08-15 r14045@Kushana: nickm | 2007-08-15 13:07:21 -0400Nick Mathewson
Add more logs to try to hunt down latest voting bug. svn:r11123
2007-08-15 r14043@Kushana: nickm | 2007-08-15 12:12:25 -0400Nick Mathewson
Fix consensus signatures: regenerate the entire signature list when we get a new signature, rather than just appending the new signature. This lets us tentatively accept weird signatures, since we can replace them with better ones later. svn:r11122
2007-08-15 r14032@Kushana: nickm | 2007-08-15 11:35:16 -0400Nick Mathewson
Add unit tests for median functions; enforce sensible ranges for intervals and delays. svn:r11121
2007-08-15 r14031@Kushana: nickm | 2007-08-15 11:34:26 -0400Nick Mathewson
Fix a segfault in cert retrieval svn:r11120
2007-08-15this does not actually change anything (i hope), but it makes me a lotRoger Dingledine
more comfortable. nick, can you confirm this? svn:r11119
2007-08-15backport candidate:Roger Dingledine
- If we require CookieAuthentication but we fail to write the cookie file, we would warn but not exit, and end up in a state where no controller could authenticate. Now we exit. - If we require CookieAuthentication, stop generating a new cookie every time we change any piece of our config. svn:r11117
2007-08-15commit proposal 120: Suicide descriptors when Tor servers stopRoger Dingledine
svn:r11115