mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Merge pull request #14504 from treysis/ipv6-outgoing-interfaces
Fix bad IPv6 address format for outgoingInterfaces
This commit is contained in:
commit
4bf4d45389
1 changed files with 7 additions and 5 deletions
|
@ -1457,12 +1457,14 @@ void Session::configureNetworkInterfaces(lt::settings_pack &settingsPack)
|
||||||
const QHostAddress addr {ip};
|
const QHostAddress addr {ip};
|
||||||
if (!addr.isNull())
|
if (!addr.isNull())
|
||||||
{
|
{
|
||||||
const QString ip = ((addr.protocol() == QAbstractSocket::IPv6Protocol)
|
const bool isIPv6 = (addr.protocol() == QAbstractSocket::IPv6Protocol);
|
||||||
? ('[' + Utils::Net::canonicalIPv6Addr(addr).toString() + ']')
|
const QString ip = isIPv6
|
||||||
: addr.toString());
|
? Utils::Net::canonicalIPv6Addr(addr).toString()
|
||||||
endpoints << (ip + portString);
|
: addr.toString();
|
||||||
|
|
||||||
if ((ip != "0.0.0.0") && (ip != "[::]"))
|
endpoints << ((isIPv6 ? ('[' + ip + ']') : ip) + portString);
|
||||||
|
|
||||||
|
if ((ip != QLatin1String("0.0.0.0")) && (ip != QLatin1String("::")))
|
||||||
outgoingInterfaces << ip;
|
outgoingInterfaces << ip;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue