[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r12364: Raise the default BandwidthRate/BandwidthBurst to 5MB/10MB, (in tor/trunk: . src/or)
Author: arma
Date: 2007-11-03 18:08:52 -0400 (Sat, 03 Nov 2007)
New Revision: 12364
Modified:
tor/trunk/ChangeLog
tor/trunk/src/or/config.c
Log:
Raise the default BandwidthRate/BandwidthBurst to 5MB/10MB, to
accommodate the growing number of servers that use the default
and are reaching it.
Modified: tor/trunk/ChangeLog
===================================================================
--- tor/trunk/ChangeLog 2007-11-03 22:06:56 UTC (rev 12363)
+++ tor/trunk/ChangeLog 2007-11-03 22:08:52 UTC (rev 12364)
@@ -9,6 +9,9 @@
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
Modified: tor/trunk/src/or/config.c
===================================================================
--- tor/trunk/src/or/config.c 2007-11-03 22:06:56 UTC (rev 12363)
+++ tor/trunk/src/or/config.c 2007-11-03 22:08:52 UTC (rev 12364)
@@ -139,8 +139,8 @@
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"),