mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-16 05:01:37 +03:00
Don't use deprecated peer_info fields
This commit is contained in:
parent
a2f82be6c2
commit
72a54910e9
2 changed files with 0 additions and 7 deletions
|
@ -121,12 +121,6 @@ bool PeerInfo::isConnecting() const
|
||||||
return (m_nativeInfo.flags & libt::peer_info::connecting);
|
return (m_nativeInfo.flags & libt::peer_info::connecting);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PeerInfo::isQueued() const
|
|
||||||
{
|
|
||||||
return (m_nativeInfo.flags & libt::peer_info::queued);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
bool PeerInfo::isOnParole() const
|
bool PeerInfo::isOnParole() const
|
||||||
{
|
{
|
||||||
return (m_nativeInfo.flags & libt::peer_info::on_parole);
|
return (m_nativeInfo.flags & libt::peer_info::on_parole);
|
||||||
|
|
|
@ -68,7 +68,6 @@ namespace BitTorrent
|
||||||
|
|
||||||
bool isHandshake() const;
|
bool isHandshake() const;
|
||||||
bool isConnecting() const;
|
bool isConnecting() const;
|
||||||
bool isQueued() const;
|
|
||||||
bool isOnParole() const;
|
bool isOnParole() const;
|
||||||
bool isSeed() const;
|
bool isSeed() const;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue