Explorar el Código

bump us to 0.0.9rc6

svn:r3089
Roger Dingledine hace 19 años
padre
commit
4006246b9e
Se han modificado 4 ficheros con 33 adiciones y 3 borrados
  1. 30 0
      ChangeLog
  2. 1 1
      configure.in
  3. 1 1
      contrib/tor.nsi
  4. 1 1
      src/win32/orconfig.h

+ 30 - 0
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.

+ 1 - 1
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

+ 1 - 1
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/"
 

+ 1 - 1
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"