mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Small refactor in Session::setListeningPort()
This commit is contained in:
parent
331219dda8
commit
fb22940639
1 changed files with 15 additions and 10 deletions
|
@ -1489,18 +1489,23 @@ void Session::setListeningPort(int port)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
QString ip;
|
const QList<QNetworkAddressEntry> addresses = network_iface.addressEntries();
|
||||||
qDebug("This network interface has %d IP addresses", network_iface.addressEntries().size());
|
qDebug("This network interface has %d IP addresses", addresses.size());
|
||||||
foreach (const QNetworkAddressEntry &entry, network_iface.addressEntries()) {
|
QHostAddress ip;
|
||||||
if ((!listen_ipv6 && (entry.ip().protocol() == QAbstractSocket::IPv6Protocol))
|
QString ipString;
|
||||||
|| (listen_ipv6 && (entry.ip().protocol() == QAbstractSocket::IPv4Protocol)))
|
QAbstractSocket::NetworkLayerProtocol protocol;
|
||||||
|
foreach (const QNetworkAddressEntry &entry, addresses) {
|
||||||
|
ip = entry.ip();
|
||||||
|
ipString = ip.toString();
|
||||||
|
protocol = ip.protocol();
|
||||||
|
Q_ASSERT(protocol == QAbstractSocket::IPv4Protocol || protocol == QAbstractSocket::IPv6Protocol);
|
||||||
|
if ((!listen_ipv6 && (protocol == QAbstractSocket::IPv6Protocol))
|
||||||
|
|| (listen_ipv6 && (protocol == QAbstractSocket::IPv4Protocol)))
|
||||||
continue;
|
continue;
|
||||||
|
qDebug("Trying to listen on IP %s (%s)", qPrintable(ipString), qPrintable(iface_name));
|
||||||
qDebug("Trying to listen on IP %s (%s)", qPrintable(entry.ip().toString()), qPrintable(iface_name));
|
m_nativeSession->listen_on(ports, ec, ipString.toLatin1().constData(), libt::session::listen_no_system_port);
|
||||||
m_nativeSession->listen_on(ports, ec, entry.ip().toString().toLatin1().constData(), libt::session::listen_no_system_port);
|
|
||||||
if (!ec) {
|
if (!ec) {
|
||||||
ip = entry.ip().toString();
|
logger->addMessage(tr("qBittorrent is trying to listen on interface %1 port: %2", "e.g: qBittorrent is trying to listen on interface 192.168.0.1 port: TCP/6881").arg(ipString).arg(port), Log::INFO);
|
||||||
logger->addMessage(tr("qBittorrent is trying to listen on interface %1 port: %2", "e.g: qBittorrent is trying to listen on interface 192.168.0.1 port: TCP/6881").arg(ip).arg(QString::number(port)), Log::INFO);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue