summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2007-11-03 22:08:52 +0000
committerRoger Dingledine <arma@torproject.org>2007-11-03 22:08:52 +0000
commitfcc115e7635140df93253032a613c2ee6ff1179e (patch)
tree005ffd377c350250e3c19a2d7af602cf6efa053d /src
parente59c47c26cecf1a6a79d67ffe6f1a92b691c88e8 (diff)
downloadtor-fcc115e7635140df93253032a613c2ee6ff1179e.tar.gz
tor-fcc115e7635140df93253032a613c2ee6ff1179e.zip
Raise the default BandwidthRate/BandwidthBurst to 5MB/10MB, to
accommodate the growing number of servers that use the default and are reaching it. svn:r12364
Diffstat (limited to 'src')
-rw-r--r--src/or/config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/config.c b/src/or/config.c
index 795d1804d0..7728c85666 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -139,8 +139,8 @@ static config_var_t _option_vars[] = {
V(AutomapHostsOnResolve, BOOL, "0"),
V(AutomapHostsSuffixes, CSV, ".onion,.exit"),
V(AvoidDiskWrites, BOOL, "0"),
- V(BandwidthBurst, MEMUNIT, "6 MB"),
- V(BandwidthRate, MEMUNIT, "3 MB"),
+ V(BandwidthBurst, MEMUNIT, "10 MB"),
+ V(BandwidthRate, MEMUNIT, "5 MB"),
V(BridgeAuthoritativeDir, BOOL, "0"),
VAR("Bridge", LINELIST, Bridges, NULL),
V(CircuitBuildTimeout, INTERVAL, "1 minute"),