diff options
author | Roger Dingledine <arma@torproject.org> | 2012-09-10 03:03:06 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2012-09-10 03:03:06 -0400 |
commit | e1e34ee4e409b044eed3164a20f388a2d3580fd6 (patch) | |
tree | d12491cffaf3c76eada062f624389ff7c3f54297 /src/or | |
parent | f6639d5676f34234afaec9b49c89735724f7f67e (diff) | |
download | tor-e1e34ee4e409b044eed3164a20f388a2d3580fd6.tar.gz tor-e1e34ee4e409b044eed3164a20f388a2d3580fd6.zip |
raise bandwidthrate/bandwidthburst to a new "infinite"
addresses bug 6605.
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/config.c b/src/or/config.c index 7dd4539d4b..61fd99342f 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -209,8 +209,8 @@ static config_var_t _option_vars[] = { V(AutomapHostsOnResolve, BOOL, "0"), V(AutomapHostsSuffixes, CSV, ".onion,.exit"), V(AvoidDiskWrites, BOOL, "0"), - V(BandwidthBurst, MEMUNIT, "10 MB"), - V(BandwidthRate, MEMUNIT, "5 MB"), + V(BandwidthBurst, MEMUNIT, "1 GB"), + V(BandwidthRate, MEMUNIT, "1 GB"), V(BridgeAuthoritativeDir, BOOL, "0"), VAR("Bridge", LINELIST, Bridges, NULL), V(BridgePassword, STRING, NULL), |