mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-26 14:34:30 +00:00
Fix peer flags.
This commit is contained in:
parent
8464720d99
commit
78663b9c27
@ -440,7 +440,7 @@ QString PeerListWidget::getFlags(const peer_info& peer)
|
|||||||
QString flags;
|
QString flags;
|
||||||
if (peer.flags & peer_info::interesting) {
|
if (peer.flags & peer_info::interesting) {
|
||||||
//d = Your client wants to download, but peer doesn't want to send (interested and choked)
|
//d = Your client wants to download, but peer doesn't want to send (interested and choked)
|
||||||
if (peer.flags & peer_info::choked)
|
if (peer.flags & peer_info::remote_choked)
|
||||||
flags += "d ";
|
flags += "d ";
|
||||||
else //D = Currently downloading (interested and not choked)
|
else //D = Currently downloading (interested and not choked)
|
||||||
flags += "D ";
|
flags += "D ";
|
||||||
@ -448,7 +448,7 @@ QString PeerListWidget::getFlags(const peer_info& peer)
|
|||||||
|
|
||||||
if (peer.flags & peer_info::remote_interested) {
|
if (peer.flags & peer_info::remote_interested) {
|
||||||
//u = Peer wants your client to upload, but your client doesn't want to (interested and choked)
|
//u = Peer wants your client to upload, but your client doesn't want to (interested and choked)
|
||||||
if (peer.flags & peer_info::remote_choked)
|
if (peer.flags & peer_info::choked)
|
||||||
flags += "u ";
|
flags += "u ";
|
||||||
else //U = Currently uploading (interested and not choked)
|
else //U = Currently uploading (interested and not choked)
|
||||||
flags += "U ";
|
flags += "U ";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user