- Blocked users (by ipfilter) are now logged in GUI

This commit is contained in:
Christophe Dumez 2007-07-04 06:42:36 +00:00
parent 3a727dea28
commit c11e5e8b12
7 changed files with 27 additions and 11 deletions

View file

@ -716,6 +716,9 @@ void bittorrent::readAlerts(){
emit trackerAuthenticationRequired(p->handle);
}
}
else if (peer_blocked_alert* p = dynamic_cast<peer_blocked_alert*>(a.get())){
emit peerBlocked(QString(p->ip.to_string().c_str()));
}
a = s->pop_alert();
}
}