summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-12-06 06:27:39 +0000
committerRoger Dingledine <arma@torproject.org>2004-12-06 06:27:39 +0000
commit4006246b9e38f03e75fdf8b87fd9c52241b5c0bd (patch)
tree59ca22b6a242c48983a0cdb278e762d5900b8089
parente68a271f3051e8fff3e3dad25d42de4d81056122 (diff)
downloadtor-0.0.9rc6.tar.gz
tor-0.0.9rc6.zip
bump us to 0.0.9rc6tor-0.0.9rc6
svn:r3089
-rw-r--r--ChangeLog30
-rw-r--r--configure.in2
-rw-r--r--contrib/tor.nsi2
-rw-r--r--src/win32/orconfig.h2
4 files changed, 33 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 36930e96a4..7ce458e1e2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,34 @@
Changes so far in 0.0.9:
+rc6:
+ o Bugfixes on 0.0.9pre:
+ - Clean up some more integer underflow opportunities (not exploitable
+ we think).
+ - While hibernating, hup should not regrow our listeners.
+ - Send an end to the streams we close when we hibernate, rather
+ than just chopping them off.
+ - React to eof immediately on non-open edge connections.
+
+ o Bugfixes on 0.0.8.1:
+ - Calculate timeout for waiting for a connected cell from the time
+ we sent the begin cell, not from the time the stream started. If
+ it took a long time to establish the circuit, we would time out
+ right after sending the begin cell.
+ - Fix router_compare_addr_to_addr_policy: it was not treating a port
+ of * as always matching, so we were picking reject *:* nodes as
+ exit nodes too. Oops.
+
+ o Features:
+ - New circuit building strategy: keep a list of ports that we've
+ used in the past 6 hours, and always try to have 2 circuits open
+ or on the way that will handle each such port. Seed us with port
+ 80 so web users won't complain that Tor is "slow to start up".
+ - Make kill -USR1 dump more useful stats about circuits.
+ - When warning about retrying or giving up, print the address, so
+ the user knows which one it's talking about.
+ - If you haven't used a clean circuit in an hour, throw it away,
+ just to be on the safe side. (This means after 6 hours a totally
+ unused Tor client will have no circuits open.)
+
rc5:
o Bugfixes on 0.0.8.1:
- Disallow NDEBUG. We don't ever want anybody to turn off debug.
diff --git a/configure.in b/configure.in
index 0b3d03cf24..528eeb3fe1 100644
--- a/configure.in
+++ b/configure.in
@@ -1,6 +1,6 @@
AC_INIT
-AM_INIT_AUTOMAKE(tor, 0.0.9rc6-cvs)
+AM_INIT_AUTOMAKE(tor, 0.0.9rc6)
AM_CONFIG_HEADER(orconfig.h)
AC_CANONICAL_HOST
diff --git a/contrib/tor.nsi b/contrib/tor.nsi
index b1d1c1e375..f277b41104 100644
--- a/contrib/tor.nsi
+++ b/contrib/tor.nsi
@@ -31,7 +31,7 @@
!include "MUI.nsh"
-!define VERSION "0.0.9rc6-cvs"
+!define VERSION "0.0.9rc6"
!define INSTALLER "tor-${VERSION}-win32.exe"
!define WEBSITE "http://freehaven.net/tor/"
diff --git a/src/win32/orconfig.h b/src/win32/orconfig.h
index 003b5a2e01..2bf8259ec8 100644
--- a/src/win32/orconfig.h
+++ b/src/win32/orconfig.h
@@ -199,4 +199,4 @@
#define UNALIGNED_INT_ACCESS_OK
/* Version number of package */
-#define VERSION "0.0.9rc6-cvs"
+#define VERSION "0.0.9rc6"