mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-15 22:52:31 +00:00
* Added "key_layout" option with support for azerty.
* Delayed the hash done signal. * Allow quick hash checks that only handles invalid chunks. * Show failed counter for peers. * Updated the man page. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@737 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
@@ -74,7 +74,8 @@ WindowPeerList::redraw() {
|
||||
m_canvas->print(x, y, "QS"); x += 6;
|
||||
m_canvas->print(x, y, "DONE"); x += 6;
|
||||
m_canvas->print(x, y, "REQ"); x += 6;
|
||||
m_canvas->print(x, y, "SNUB");
|
||||
m_canvas->print(x, y, "SNUB"); x += 6;
|
||||
m_canvas->print(x, y, "FAILED");
|
||||
|
||||
++y;
|
||||
|
||||
@@ -129,7 +130,12 @@ WindowPeerList::redraw() {
|
||||
if (p.is_snubbed())
|
||||
m_canvas->print(x, y, "*");
|
||||
|
||||
x += 5;
|
||||
x += 6;
|
||||
|
||||
if (p.failed_counter() != 0)
|
||||
m_canvas->print(x, y, "%u", p.failed_counter());
|
||||
|
||||
x += 7;
|
||||
|
||||
char buf[128];
|
||||
control->client_info()->print(buf, buf + 128, p.id().c_str());
|
||||
|
||||
Reference in New Issue
Block a user