diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-10-15 05:09:48 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-10-15 05:09:48 +0000 |
commit | 01eacbca9ebf217bf1c8c5f883266092b4365cec (patch) | |
tree | 96ab4194129747ea6f2ae2a640bd3848258f3ab6 /src/or/or.h | |
parent | 88e0c080cf5493e2841a392f77daeef3db6a289d (diff) | |
download | tor-01eacbca9ebf217bf1c8c5f883266092b4365cec.tar.gz tor-01eacbca9ebf217bf1c8c5f883266092b4365cec.zip |
Make RecommendedVersions a CONFIG_TYPE_LINELIST option, and have it tolerate whitespace a little better.
svn:r2528
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/or.h b/src/or/or.h index 1fe05447da..ff2a2957d1 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -858,8 +858,9 @@ typedef struct { struct config_line_t *DirBindAddress; /** Local address to bind outbound sockets */ char *OutboundBindAddress; - char *RecommendedVersions; /**< Directory server only: which versions of - * Tor should we tell users to run? */ + struct config_line_t *RecommendedVersions; + /**< Directory server only: which versions of + * Tor should we tell users to run? */ char *User; /**< Name of user to run Tor as. */ char *Group; /**< Name of group to run Tor as. */ double PathlenCoinWeight; /**< Parameter used to configure average path |