disabled auto disconnect_peers feature since it seems to be buggy

This commit is contained in:
Arvid Norberg 2010-03-20 02:43:33 +00:00
parent 8ee5268123
commit 6ecb25121b
2 changed files with 3 additions and 2 deletions

View File

@ -121,6 +121,7 @@
* made the DHT socket bind to the same interface as the session
* fixed issue where an http proxy would not be used on redirects
* Solaris build fixes
* disabled buggy disconnect_peers feature
release 0.14.9

View File

@ -152,8 +152,8 @@ namespace libtorrent
, share_ratio_limit(2.f)
, seed_time_ratio_limit(7.f)
, seed_time_limit(24 * 60 * 60) // 24 hours
, peer_turnover(1 / 50.f)
, peer_turnover_cutoff(1.f)
, peer_turnover(1 / 100.f)
, peer_turnover_cutoff(1.1f) // disable until the crash is resolved
, close_redundant_connections(true)
, auto_scrape_interval(1800)
, auto_scrape_min_interval(300)