diff options
author | Roger Dingledine <arma@torproject.org> | 2007-05-04 09:25:23 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-05-04 09:25:23 +0000 |
commit | 462dfe201247ff5bd21580615df8ca502c179c0d (patch) | |
tree | c621a1fe5c538ef68a4fbd0c9fd5bda87bf8c176 /src | |
parent | b1d93df038d687c706cfcdfd72254457eefd3322 (diff) | |
download | tor-462dfe201247ff5bd21580615df8ca502c179c0d.tar.gz tor-462dfe201247ff5bd21580615df8ca502c179c0d.zip |
make MaxAdvertisedBandwidth into a legal default
svn:r10115
Diffstat (limited to 'src')
-rw-r--r-- | src/or/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index e3929169e6..854ffd916f 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -189,7 +189,7 @@ static config_var_t _option_vars[] = { VAR("LongLivedPorts", CSV, LongLivedPorts, "21,22,706,1863,5050,5190,5222,5223,6667,6697,8300"), VAR("MapAddress", LINELIST, AddressMap, NULL), - VAR("MaxAdvertisedBandwidth",MEMUNIT,MaxAdvertisedBandwidth,"128 TB"), + VAR("MaxAdvertisedBandwidth",MEMUNIT,MaxAdvertisedBandwidth,"2 GB"), VAR("MaxCircuitDirtiness", INTERVAL, MaxCircuitDirtiness, "10 minutes"), VAR("MaxOnionsPending", UINT, MaxOnionsPending, "100"), OBSOLETE("MonthlyAccountingStart"), |