]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Stop thinking that 0.1.2.x directory servers can handle "begin_dir"
authorRoger Dingledine <arma@torproject.org>
Mon, 3 Dec 2007 22:31:59 +0000 (22:31 +0000)
committerRoger Dingledine <arma@torproject.org>
Mon, 3 Dec 2007 22:31:59 +0000 (22:31 +0000)
requests. Should ease bugs 406 and 419 where 0.1.2.x relays are
crashing or mis-answering these requests.

svn:r12658

ChangeLog
src/or/routerparse.c

index d8f5f8e11054d258102ebf1951189e912b6d976b..47b60a72fdea8e4ae72b0a5ad0e73eb9af0e243c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,6 +11,9 @@ Changes in version 0.2.0.13-alpha - 2007-12-??
     - 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
index 28e44849fb95906eb0d8372b72f0c37325818480..4b25db74dd58416393dca029df71884221418ea5 100644 (file)
@@ -1718,7 +1718,7 @@ routerstatus_parse_entry_from_string(const char **s, smartlist_t *tokens,
       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 =