diff options
author | Roger Dingledine <arma@torproject.org> | 2006-06-10 00:26:39 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-06-10 00:26:39 +0000 |
commit | 889b8d5bac2f1cd818142317c55689a4304a79ae (patch) | |
tree | faa13b85ab990f53d775a08025680086f331e3b4 /src/or/or.h | |
parent | 1f585987c4b20cc12f789a9943abffa5d8205c7b (diff) | |
download | tor-889b8d5bac2f1cd818142317c55689a4304a79ae.tar.gz tor-889b8d5bac2f1cd818142317c55689a4304a79ae.zip |
Add a new config option TestVia, that lets you specify preferred middle
hops to use for testing circuits. Perhaps this will let me debug the
reachability problem better.
svn:r6581
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/or.h b/src/or/or.h index 1434830b61..92a7e5f2b0 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1327,6 +1327,7 @@ typedef struct { int NumCpus; /**< How many CPUs should we try to use? */ int RunTesting; /**< If true, create testing circuits to measure how well the * other ORs are running. */ + char *TestVia; /**< When reachability testing, use these as middle hop. */ config_line_t *RendConfigLines; /**< List of configuration lines * for rendezvous services. */ char *ContactInfo; /**< Contact info to be published in the directory */ |