]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Bump the minimum relay version to 0.2.4.18-rc
authorNick Mathewson <nickm@torproject.org>
Wed, 4 Feb 2015 18:27:56 +0000 (13:27 -0500)
committerNick Mathewson <nickm@torproject.org>
Wed, 4 Feb 2015 18:27:56 +0000 (13:27 -0500)
Closes #13555

changes/feature_13555 [new file with mode: 0644]
src/or/dirserv.c

diff --git a/changes/feature_13555 b/changes/feature_13555
new file mode 100644 (file)
index 0000000..bc9ca37
--- /dev/null
@@ -0,0 +1,3 @@
+  o Deprecated versions:
+    - Tor relays older than 0.2.4.18-rc are no longer allowed to advertise
+      themselves on the network. Closes ticket 13555.
index d90619520b1a72cfccc43687ee9caa7f22a7c00e..1504b3b450d3be015926efa985e9ce55fc485683 100644 (file)
@@ -285,9 +285,9 @@ dirserv_get_status_impl(const char *id_digest, const char *nickname,
               strmap_size(fingerprint_list->fp_by_name),
               digestmap_size(fingerprint_list->status_by_digest));
 
-  /* Versions before Tor 0.2.3.16-alpha are too old to support, and are
+  /* Versions before Tor 0.2.4.18-rc are too old to support, and are
    * missing some important security fixes too. Disable them. */
-  if (platform && !tor_version_as_new_as(platform,"0.2.3.16-alpha")) {
+  if (platform && !tor_version_as_new_as(platform,"0.2.4.18-rc")) {
     if (msg)
       *msg = "Tor version is insecure or unsupported. Please upgrade!";
     return FP_REJECT;