diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-06-14 16:11:37 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-06-14 16:11:37 +0000 |
commit | 96bf9cd4c5923882580ab6d5a6fb4dbd9518e4d5 (patch) | |
tree | bdf01d5abb6f6b8added5e1fcaf4cc45c2962959 /src/or/or.h | |
parent | 0831cc3dbcb89fc356c69ced54374aaebbb4fd39 (diff) | |
download | tor-96bf9cd4c5923882580ab6d5a6fb4dbd9518e4d5.tar.gz tor-96bf9cd4c5923882580ab6d5a6fb4dbd9518e4d5.zip |
Comments and doc tweaks on Karsten's testing-dir-networks patch
svn:r15254
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/src/or/or.h b/src/or/or.h index 456276c346..b7d6e1371f 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2355,24 +2355,30 @@ typedef struct { * migration purposes? */ int V3AuthUseLegacyKey; - /** The length of time that we think an initial consensus should be - * fresh. */ + /*XXXX021 I think all these "Testing Networks only" options should perhaps + * have a common prefix. -NM */ + /** The length of time that we think an initial consensus should be fresh. + * Only altered on testing networks. */ int V3AuthInitialVotingInterval; - /** The length of time we think it will take to distribute initial - * votes. */ + /** The length of time we think it will take to distribute initial votes. + * Only altered on testing networks. */ int V3AuthInitialVoteDelay; /** The length of time we think it will take to distribute initial - * signatures. */ + * signatures. Only altered on testing networks.*/ int V3AuthInitialDistDelay; - /** If an authority has been around for less than this amount of time, - * its reachability information is not accurate. */ + /*XXXX021 why is this not prefixed to indicate that it's an authority + * option? */ + /** If an authority has been around for less than this amount of time, it + * does not believe its reachability information is accurate. Only + * altered on testing networks. */ int DirTimeToLearnReachability; /** Clients don't download any descriptor this recent, since it will - * probably not have propagated to enough caches. */ + * probably not have propagated to enough caches. Only altered on testing + * networks. */ int EstimatedDescriptorPropagationTime; /** If true, we take part in a testing network. Change the defaults of a |