mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-22 20:44:56 +00:00
try another improvement to local dht tracker updating: currently connected nodes or recently connected (4 hours)
This commit is contained in:
parent
5dd9116627
commit
c9e2b88920
@ -2069,8 +2069,9 @@ namespace libtorrent
|
||||
for (; i != end; ++i) {
|
||||
policy::peer const* p = *i;
|
||||
|
||||
if( p->connectable && !p->banned && p->last_connected &&
|
||||
int(p->failcount) < settings().max_failcount ) {
|
||||
bool connect_recently = !p->banned && int(p->failcount) < settings().max_failcount &&
|
||||
p->last_connected && (m_ses.session_time() - p->last_connected) < (4*3600);
|
||||
if( p->connectable && ( p->connection || connect_recently) ) {
|
||||
m_ses.m_dht->announce(name(), m_torrent_file->info_hash()
|
||||
, p->address(), p->port, p->seed, false
|
||||
, boost::bind(&nop));
|
||||
|
Loading…
x
Reference in New Issue
Block a user