[or-cvs] r12658: Stop thinking that 0.1.2.x directory servers can handle "beg (in tor/trunk: . src/or)

arma at seul.org arma at seul.org
Mon Dec 3 22:31:59 UTC 2007


Author: arma
Date: 2007-12-03 17:31:59 -0500 (Mon, 03 Dec 2007)
New Revision: 12658

Modified:
   tor/trunk/ChangeLog
   tor/trunk/src/or/routerparse.c
Log:
Stop thinking that 0.1.2.x directory servers can handle "begin_dir"
requests. Should ease bugs 406 and 419 where 0.1.2.x relays are
crashing or mis-answering these requests.


Modified: tor/trunk/ChangeLog
===================================================================
--- tor/trunk/ChangeLog	2007-12-03 22:04:19 UTC (rev 12657)
+++ tor/trunk/ChangeLog	2007-12-03 22:31:59 UTC (rev 12658)
@@ -11,6 +11,9 @@
     - We were ignoring our RelayBandwidthRate for the first 30 seconds
       after opening a circuit -- even relayed circuits. Bugfix on
       0.2.0.3-alpha.
+    - Stop thinking that 0.1.2.x directory servers can handle "begin_dir"
+      requests. Should ease bugs 406 and 419 where 0.1.2.x relays are
+      crashing or mis-answering these requests.
 
   o Minor bugfixes:
     - The fix in 0.2.0.12-alpha cleared the "hsdir" flag in v3 network

Modified: tor/trunk/src/or/routerparse.c
===================================================================
--- tor/trunk/src/or/routerparse.c	2007-12-03 22:04:19 UTC (rev 12657)
+++ tor/trunk/src/or/routerparse.c	2007-12-03 22:31:59 UTC (rev 12658)
@@ -1718,7 +1718,7 @@
       rs->version_supports_extrainfo_upload = 1;
     } else {
       rs->version_supports_begindir =
-        tor_version_as_new_as(tok->args[0], "0.1.2.2-alpha");
+        tor_version_as_new_as(tok->args[0], "0.2.0.1-alpha");
       rs->version_supports_extrainfo_upload =
         tor_version_as_new_as(tok->args[0], "0.2.0.0-alpha-dev (r10070)");
       rs->version_supports_v3_dir =



More information about the tor-commits mailing list