added prioritization in the bandwidth_manager (throttler), web seeds now have lower priority when being handed bandwidth. torrent_reply_alert now includes the number of peers returned from the tracker. updated Changelog

This commit is contained in:
Arvid Norberg
2007-02-01 07:33:04 +00:00
parent 1a0547a15c
commit d0ebdb2dee
13 changed files with 121 additions and 32 deletions

View File

@@ -806,6 +806,11 @@ int main(int ac, char* av[])
{
events.push_back(now + ": tracker message: " + p->msg());
}
else if (tracker_reply_alert* p = dynamic_cast<tracker_reply_alert*>(a.get()))
{
events.push_back(now + ": " + p->msg() + " ("
+ boost::lexical_cast<std::string>(p->num_peers) + ")");
}
else
{
events.push_back(now + ": " + a->msg());