commit 61f00819dc3f18b17af0d8d9d3f4f90791364e39 Author: Damian Johnson atagar@torproject.org Date: Sun Jul 14 11:07:40 2013 -0700
Dropping Tonga from remote descriptor fetching
Karsten reports that we shouldn't use authorities that lack 'v3ident'. At present that's just Tonga. --- stem/descriptor/remote.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/stem/descriptor/remote.py b/stem/descriptor/remote.py index 1f28bbd..ed86eda 100644 --- a/stem/descriptor/remote.py +++ b/stem/descriptor/remote.py @@ -46,14 +46,15 @@ import urllib2
import stem.descriptor
-# Tor directory authorities as of commit f631b73 (7/4/13): +# Tor directory authorities as of commit f631b73 (7/4/13). This should only +# include authorities with 'v3ident': +# # https://gitweb.torproject.org/tor.git/blob/f631b73:/src/or/config.c#l816
DIRECTORY_AUTHORITIES = { 'moria1': ('128.31.0.39', 9131), 'tor26': ('86.59.21.38', 80), 'dizum': ('194.109.206.212', 80), - 'Tonga': ('82.94.251.203', 80), 'turtles': ('76.73.17.194', 9030), 'gabelmoo': ('212.112.245.170', 80), 'dannenberg': ('193.23.244.244', 80),
tor-commits@lists.torproject.org