mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 05:13:30 -07:00
Merge pull request #12430 from rwasef1830/add-outgoing-interfaces
Fix outgoing interfaces not getting assigned in case addr is not null.
This commit is contained in:
commit
f58f425175
1 changed files with 4 additions and 3 deletions
|
@ -1533,10 +1533,11 @@ void Session::configureNetworkInterfaces(lt::settings_pack &settingsPack)
|
||||||
for (const QString &ip : asConst(getListeningIPs())) {
|
for (const QString &ip : asConst(getListeningIPs())) {
|
||||||
const QHostAddress addr {ip};
|
const QHostAddress addr {ip};
|
||||||
if (!addr.isNull()) {
|
if (!addr.isNull()) {
|
||||||
endpoints << ((addr.protocol() == QAbstractSocket::IPv6Protocol)
|
const QString ip = ((addr.protocol() == QAbstractSocket::IPv6Protocol)
|
||||||
? ('[' + Utils::Net::canonicalIPv6Addr(addr).toString() + ']')
|
? ('[' + Utils::Net::canonicalIPv6Addr(addr).toString() + ']')
|
||||||
: addr.toString())
|
: addr.toString());
|
||||||
+ portString;
|
endpoints << (ip + portString);
|
||||||
|
outgoingInterfaces << ip;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// ip holds an interface name
|
// ip holds an interface name
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue