diff options
author | Mike Perry <mikeperry-git@fscked.org> | 2010-07-11 17:51:44 -0700 |
---|---|---|
committer | Mike Perry <mikeperry-git@fscked.org> | 2010-07-14 20:49:19 -0700 |
commit | 9d5d0f040f9b0ddf6c10166200d115bfa30a31da (patch) | |
tree | cbd400f2fde91b403ea1207482239458c2e9b4cd /src/or/or.h | |
parent | 54cdac97f150f670e60f7ce0590e3bbf428d394a (diff) | |
download | tor-9d5d0f040f9b0ddf6c10166200d115bfa30a31da.tar.gz tor-9d5d0f040f9b0ddf6c10166200d115bfa30a31da.zip |
Alter how guard flags are chosen.
V3 authorities no longer decide not to vote on Guard+Exit. The bandwidth
weights should take care of this now.
Also, lower the max threshold for WFU to 0.98, to allow more nodes to become
guards.
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 2124d457ef..c9c2f41641 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -4046,8 +4046,8 @@ const char *dirvote_get_pending_detached_signatures(void); const cached_dir_t *dirvote_get_vote(const char *fp, int flags); void set_routerstatus_from_routerinfo(routerstatus_t *rs, routerinfo_t *ri, time_t now, - int naming, int exits_can_be_guards, - int listbadexits, int listbaddirs); + int naming, int listbadexits, + int listbaddirs); void router_clear_status_flags(routerinfo_t *ri); networkstatus_t * dirserv_generate_networkstatus_vote_obj(crypto_pk_env_t *private_key, |