diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-02-23 08:13:39 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-03-21 13:23:32 -0400 |
commit | 60ca3f358f80930778b12c9fcc8e3cf562b64e8e (patch) | |
tree | a604b2b05c3766cc1e3b46fa1b1afc73e1928088 /src/or | |
parent | 13a31e72db1b009623aa55bd52ffe7390a22623d (diff) | |
download | tor-60ca3f358f80930778b12c9fcc8e3cf562b64e8e.tar.gz tor-60ca3f358f80930778b12c9fcc8e3cf562b64e8e.zip |
Document has_ed25519_listing
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/or.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/or.h b/src/or/or.h index b6d6ec074f..b24b6a85e4 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2377,7 +2377,9 @@ typedef struct vote_routerstatus_t { char *version; /**< The version that the authority says this router is * running. */ unsigned int has_measured_bw:1; /**< The vote had a measured bw */ - unsigned int has_ed25519_listing:1; /** DOCDOC */ + /** True iff the vote included an entry for ed25519 ID, or included + * "id ed25519 none" to indicate that there was no ed25519 ID. */ + unsigned int has_ed25519_listing:1; unsigned int ed25519_reflects_consensus:1; /** DOCDOC */ uint32_t measured_bw_kb; /**< Measured bandwidth (capacity) of the router */ /** The hash or hashes that the authority claims this microdesc has. */ |