aboutsummaryrefslogtreecommitdiff
path: root/src/or/dirserv.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2009-09-30 18:34:21 -0400
committerRoger Dingledine <arma@torproject.org>2009-09-30 18:34:21 -0400
commit53a7636a0527d13c83832b115a88b97eda08fa8b (patch)
tree9e9356a137e7d3266baeff2ff62bb5f27490dcd2 /src/or/dirserv.c
parentf7e6e852e80c22b40a8f09bc1c85074726d7078e (diff)
downloadtor-53a7636a0527d13c83832b115a88b97eda08fa8b.tar.gz
tor-53a7636a0527d13c83832b115a88b97eda08fa8b.zip
Dir auths reject relays running < Tor 0.1.2.14
Directory authorities now reject Tor relays with versions less than 0.1.2.14. This step cuts out four relays from the current network, none of which are very big.
Diffstat (limited to 'src/or/dirserv.c')
-rw-r--r--src/or/dirserv.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c
index 1f4049bd54..5deb0ea413 100644
--- a/src/or/dirserv.c
+++ b/src/or/dirserv.c
@@ -371,10 +371,10 @@ 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));
- /* 0.1.1.17-rc was the first version that claimed to be stable, doesn't
- * crash and drop circuits all the time, and is even vaguely compatible with
- * the current network */
- if (platform && !tor_version_as_new_as(platform,"0.1.1.17-rc")) {
+ /* Tor 0.1.2.x is pretty old, but there are a lot of them running still,
+ * and there aren't any critical relay-side vulnerabilities. Once more
+ * of them die off, we should raise this minimum to 0.2.0.x. */
+ if (platform && !tor_version_as_new_as(platform,"0.1.2.14")) {
if (msg)
*msg = "Tor version is far too old to work.";
return FP_REJECT;