diff options
author | Roger Dingledine <arma@torproject.org> | 2009-04-12 07:56:58 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2009-04-12 07:56:58 +0000 |
commit | 39ceda7e05d714a157dbd0da11de6ba060cb233a (patch) | |
tree | be2f15e5146cebb0b4557bc800ceed5264c43aa2 /src/or/or.h | |
parent | 115474a44ebd5cdd12eee315a3d6c93301631277 (diff) | |
download | tor-39ceda7e05d714a157dbd0da11de6ba060cb233a.tar.gz tor-39ceda7e05d714a157dbd0da11de6ba060cb233a.zip |
Raise the minimum bandwidth to be a relay from 20000 bytes to 20480
bytes (aka 20KB/s), to match our documentation. Also update
directory authorities so they always assign the Fast flag to relays
with 20KB/s of capacity. Now people running relays won't suddenly
find themselves not seeing any use, if the network gets faster
on average.
svn:r19305
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/or.h b/src/or/or.h index 30d44bc52b..aa3824a3dc 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -4289,7 +4289,7 @@ typedef struct trusted_dir_server_t { **/ } trusted_dir_server_t; -#define ROUTER_REQUIRED_MIN_BANDWIDTH 10000 +#define ROUTER_REQUIRED_MIN_BANDWIDTH (20*1024) #define ROUTER_MAX_DECLARED_BANDWIDTH INT32_MAX |