attempt to fix #190

This commit is contained in:
Arvid Norberg 2007-10-27 21:21:44 +00:00
parent 8f07edbed2
commit 3c05e0fa41
1 changed files with 11 additions and 0 deletions

View File

@ -993,6 +993,17 @@ namespace detail
return;
}
// don't allow more connections than the max setting
if (m_connections.size() > max_connections())
{
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
(*m_logger) << "number of connections limit exceeded (conns: "
<< num_connections() << ", limit: " << max_connections()
<< "), connection rejected\n";
#endif
return;
}
// check if we have any active torrents
// if we don't reject the connection
if (m_torrents.empty()) return;