]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Raise the default BandwidthRate/BandwidthBurst to 5MB/10MB, to
authorRoger Dingledine <arma@torproject.org>
Sat, 3 Nov 2007 22:08:52 +0000 (22:08 +0000)
committerRoger Dingledine <arma@torproject.org>
Sat, 3 Nov 2007 22:08:52 +0000 (22:08 +0000)
accommodate the growing number of servers that use the default
and are reaching it.

svn:r12364

ChangeLog
src/or/config.c

index def87939cf65d89ebe6141f7f4cec9f31e70843e..f753484777121194e8e928c8a0d5511888011150 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,9 @@ Changes in version 0.2.0.10-alpha - 2007-11-0?
       hidden service posting and fetching.
     - Code to implement new hidden service descriptor format (from Karsten
       Loesing).
+    - Raise the default BandwidthRate/BandwidthBurst to 5MB/10MB, to
+      accommodate the growing number of servers that use the default
+      and are reaching it.
 
   o Major bugfixes:
     - Stop servers from crashing if they set a Family option (or
index 795d1804d038976e4b3c5aa6d8838a73ed9a74b7..7728c85666ce1f475a218c6d2ffa17f1085ef95a 100644 (file)
@@ -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"),