*** empty log message ***

This commit is contained in:
Arvid Norberg
2004-01-31 10:20:19 +00:00
parent 03561913df
commit 5b7100656e
10 changed files with 119 additions and 65 deletions

View File

@@ -547,7 +547,7 @@ namespace libtorrent
if (m_alerts.should_post(alert::debug))
{
m_alerts.post_alert(
peer_error_alert(p->second->get_peer_id(), e.what()));
peer_error_alert(p->first->sender(), e.what()));
}
m_selector.remove(*i);
@@ -629,7 +629,7 @@ namespace libtorrent
if (m_alerts.should_post(alert::debug))
{
m_alerts.post_alert(
peer_error_alert(p->second->get_peer_id(), e.what()));
peer_error_alert(p->first->sender(), e.what()));
}
// the connection wants to disconnect for some reason, remove it
// from the connection-list
@@ -659,7 +659,7 @@ namespace libtorrent
{
m_alerts.post_alert(
peer_error_alert(
p->second->get_peer_id()
p->first->sender()
, "socket received an exception"));
}