diff options
author | Roger Dingledine <arma@torproject.org> | 2007-01-27 20:44:09 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-01-27 20:44:09 +0000 |
commit | 88796acf4b1a6452a92e2b76111eba0fdf839d1b (patch) | |
tree | a2ad366b4ec826588a5e55bfe581f4601e9320d2 | |
parent | d8d074f2e5de809a561260f4374f4dadde8d0942 (diff) | |
download | tor-88796acf4b1a6452a92e2b76111eba0fdf839d1b.tar.gz tor-88796acf4b1a6452a92e2b76111eba0fdf839d1b.zip |
fix all the bugs i could find in nick's bridge dir commit.
let's hope i got them all.
svn:r9442
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | src/or/dirserv.c | 1 |
2 files changed, 6 insertions, 6 deletions
@@ -52,11 +52,12 @@ Changes in version 0.1.2.7-alpha - 2007-??-?? us from downloading a bunch of descriptors we don't need. - Do not log IPs with TLS failures for incoming TLS connections. (Fixes bug 382.) - - When we're handing a directory connection tunneled over Tor, don't fill - up internal memory buffers with the all data we want to tunnel; - instead, only add it the OR connection that will eventually receive it - has some room for it. (This can lead to slowdowns in tunneled dir - connectinos; a better solution will have to wait for 0.2.0.) + - When we're handling a directory connection tunneled over Tor, + don't fill up internal memory buffers with all the data we want + to tunnel; instead, only add it if the OR connection that will + eventually receive it has some room for it. (This can lead to + slowdowns in tunneled dir connections; a better solution will have + to wait for 0.2.0.) - If the user asks to use invalid exit nodes, be willing to use the unstable ones. diff --git a/src/or/dirserv.c b/src/or/dirserv.c index dcaccd9d2b..56cc066112 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -2274,7 +2274,6 @@ connection_dirserv_flushed_some(dir_connection_t *conn) } } - /** Release all storage used by the directory server. */ void dirserv_free_all(void) |