diff options
author | Mike Perry <mikeperry-git@fscked.org> | 2013-03-26 14:15:58 -0700 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-03-29 12:20:54 -0400 |
commit | 651e49713c38b8ec2bde285001e46b61c500d10c (patch) | |
tree | 97132b2f326cd525f6bda4874df22a4d570a3ad1 /src/or/routerparse.h | |
parent | f6a2f088fdd3b3ed3ccc355c98dde8da37b70a09 (diff) | |
download | tor-651e49713c38b8ec2bde285001e46b61c500d10c.tar.gz tor-651e49713c38b8ec2bde285001e46b61c500d10c.zip |
Bug 8419: Apply the badexit fix from #2203 to validatio too
This was causing dirauths to emit flag weight validation warns if there
was a sufficiently large amount of badexit bandwidth to make a difference in
flag weight results.
Diffstat (limited to 'src/or/routerparse.h')
-rw-r--r-- | src/or/routerparse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerparse.h b/src/or/routerparse.h index 859a691e2a..7bf7d79073 100644 --- a/src/or/routerparse.h +++ b/src/or/routerparse.h @@ -54,7 +54,7 @@ void dump_distinct_digest_count(int severity); int compare_routerstatus_entries(const void **_a, const void **_b); int compare_vote_routerstatus_entries(const void **_a, const void **_b); networkstatus_v2_t *networkstatus_v2_parse_from_string(const char *s); -int networkstatus_verify_bw_weights(networkstatus_t *ns); +int networkstatus_verify_bw_weights(networkstatus_t *ns, int); networkstatus_t *networkstatus_parse_vote_from_string(const char *s, const char **eos_out, networkstatus_type_t ns_type); |