mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-12 16:23:07 -07:00
Fix outgoing interface is not getting assigned
Assignment was missing in main branch of condition statement. Closes https://github.com/qbittorrent/qBittorrent/issues/12421
This commit is contained in:
parent
f647b5a97f
commit
bf1c9e34d7
1 changed files with 4 additions and 3 deletions
|
@ -1529,10 +1529,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