diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-09-14 21:38:05 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-09-14 21:38:05 +0000 |
commit | 27bbfe9dcf9d44e2c4a363af2f1775e3ae442d15 (patch) | |
tree | 5b2351b8e9cb6ec0664433d96fc79659fa985066 /src/or/or.h | |
parent | e3adcbdb953fa132d0658cf18a8b91f42b139640 (diff) | |
download | tor-27bbfe9dcf9d44e2c4a363af2f1775e3ae442d15.tar tor-27bbfe9dcf9d44e2c4a363af2f1775e3ae442d15.tar.gz |
Would you believe that the software_versions field of routerlist_t was never actually used for anything?
svn:r5064
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/or.h b/src/or/or.h index f5f6af2a8..ec9cf57fe 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -845,12 +845,12 @@ typedef struct networkstatus_t { typedef struct { /** List of routerinfo_t. */ smartlist_t *routers; - /** Which versions of tor are recommended by this directory? */ - char *software_versions; /** When was the most recent directory that contributed to this list * published? */ time_t published_on; #if 0 + /** Which versions of tor are recommended by this directory? */ + char *software_versions; time_t running_routers_updated_on; /** What is the most recently received running_routers structure? */ running_routers_t *running_routers; |