aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-12-30 04:46:43 +0000
committerRoger Dingledine <arma@torproject.org>2005-12-30 04:46:43 +0000
commit0dc8e284f8e08fa4ad9f56d5cbdeb8f9f02e99d6 (patch)
tree5ab6665d6f34d2cb8726b294d74eab927633259a /src
parentc051e82f6902543412138b44aa97d27540bbaf85 (diff)
downloadtor-0dc8e284f8e08fa4ad9f56d5cbdeb8f9f02e99d6.tar.gz
tor-0dc8e284f8e08fa4ad9f56d5cbdeb8f9f02e99d6.zip
load balance a bit better by taking some load off the really
fast servers. this might slow things down more, or it might not. hm. svn:r5681
Diffstat (limited to 'src')
-rw-r--r--src/or/routerlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 427fbf0e3f..c449edc07b 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -739,7 +739,7 @@ routerlist_sl_remove_unreliable_routers(smartlist_t *sl)
}
}
-#define MAX_BELIEVABLE_BANDWIDTH 2000000 /* 2 MB/sec */
+#define MAX_BELIEVABLE_BANDWIDTH 1500000 /* 1.5 MB/sec */
/** Choose a random element of router list <b>sl</b>, weighted by
* the advertised bandwidth of each router.