summaryrefslogtreecommitdiff
path: root/src/or/config.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-08-05 00:12:05 +0000
committerRoger Dingledine <arma@torproject.org>2008-08-05 00:12:05 +0000
commitd01813a8ddcfb1db7c833cc42eea1ca98011c599 (patch)
treea073550ad61f24244b870a1a503565559fc6091a /src/or/config.c
parent18d3153fbb5ceceeacb4c4b8185c1f51da43bb1d (diff)
downloadtor-d01813a8ddcfb1db7c833cc42eea1ca98011c599.tar.gz
tor-d01813a8ddcfb1db7c833cc42eea1ca98011c599.zip
Take out the TestVia config option, since it was a workaround fortor-0.2.1.4-alpha
a bug that was fixed in Tor 0.1.1.21. svn:r16409
Diffstat (limited to 'src/or/config.c')
-rw-r--r--src/or/config.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/or/config.c b/src/or/config.c
index bfe2d03224..1594c922b0 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -301,7 +301,7 @@ static config_var_t _option_vars[] = {
V(StrictExitNodes, BOOL, "0"),
OBSOLETE("SysLog"),
V(TestSocks, BOOL, "0"),
- V(TestVia, STRING, NULL),
+ OBSOLETE("TestVia"),
V(TrackHostExits, CSV, NULL),
V(TrackHostExitsExpire, INTERVAL, "30 minutes"),
OBSOLETE("TrafficShaping"),
@@ -550,7 +550,6 @@ static config_var_description_t options_description[] = {
/* ServerDNS: DetectHijacking, ResolvConfFile, SearchDomains */
{ "ShutdownWaitLength", "Wait this long for clients to finish when "
"shutting down because of a SIGINT." },
- /* { "TestVia", } */
/* === directory cache options */
{ "DirPort", "Serve directory information from this port, and act as a "
@@ -3311,8 +3310,6 @@ options_validate(or_options_t *old_options, or_options_t *options,
return -1;
if (check_nickname_list(options->EntryNodes, "EntryNodes", msg))
return -1;
- if (check_nickname_list(options->TestVia, "TestVia", msg))
- return -1;
if (check_nickname_list(options->MyFamily, "MyFamily", msg))
return -1;
for (cl = options->NodeFamilies; cl; cl = cl->next) {