mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-21 08:09:35 +08:00
Merge pull request #11157 from Chocobo1/hostaddr
Construct QHostAddress more efficiently
This commit is contained in:
commit
1bb06a7428
@ -168,8 +168,11 @@ bool PeerInfo::isPlaintextEncrypted() const
|
||||
|
||||
PeerAddress PeerInfo::address() const
|
||||
{
|
||||
return {QHostAddress(QString::fromStdString(m_nativeInfo.ip.address().to_string()))
|
||||
, m_nativeInfo.ip.port()};
|
||||
// fast path for platforms which boost.asio internal struct maps to `sockaddr`
|
||||
return {QHostAddress(m_nativeInfo.ip.data()), m_nativeInfo.ip.port()};
|
||||
// slow path for the others
|
||||
//return {QHostAddress(QString::fromStdString(m_nativeInfo.ip.address().to_string()))
|
||||
// , m_nativeInfo.ip.port()};
|
||||
}
|
||||
|
||||
QString PeerInfo::client() const
|
||||
|
Loading…
Reference in New Issue
Block a user