From 220f6b1da2ad7672acd74afae9801e2a380b02d1 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Thu, 21 Apr 2016 18:21:49 +0200 Subject: [PATCH] Use a combo box to select the IP address you want to listen on for a specific interface --- src/gui/advancedsettings.cpp | 63 +++++++++++++++++++++++++++++++----- src/gui/advancedsettings.h | 6 ++-- 2 files changed, 58 insertions(+), 11 deletions(-) diff --git a/src/gui/advancedsettings.cpp b/src/gui/advancedsettings.cpp index 5a516c19d..ef66633f7 100644 --- a/src/gui/advancedsettings.cpp +++ b/src/gui/advancedsettings.cpp @@ -103,6 +103,7 @@ AdvancedSettings::AdvancedSettings(QWidget *parent) setEditTriggers(QAbstractItemView::NoEditTriggers); // Signals connect(&spin_cache, SIGNAL(valueChanged(int)), SLOT(updateCacheSpinSuffix(int))); + connect(&combo_iface, SIGNAL(currentIndexChanged(int)), SLOT(updateInterfaceAddressCombo(int))); // Load settings loadAdvancedSettings(); resizeColumnToContents(0); @@ -146,11 +147,18 @@ void AdvancedSettings::saveAdvancedSettings() // Listen on IPv6 address pref->setListenIPv6(cb_listen_ipv6.isChecked()); // Interface address - QHostAddress ifaceAddr(txt_iface_address.text().trimmed()); - if (ifaceAddr.isNull()) - pref->setNetworkInterfaceAddress(""); - else - pref->setNetworkInterfaceAddress(ifaceAddr.toString()); + if (combo_iface_address.currentIndex() == 0) { + // All addresses (default) + pref->setNetworkInterfaceAddress(QString::null); + } + else { + QHostAddress ifaceAddr(combo_iface_address.currentText().trimmed()); + if (ifaceAddr.isNull()) { + pref->setNetworkInterfaceAddress(QString::null); + } else { + pref->setNetworkInterfaceAddress(ifaceAddr.toString()); + } + } // Network Announce address QHostAddress networkAddr(txt_network_address.text().trimmed()); if (networkAddr.isNull()) @@ -184,6 +192,45 @@ void AdvancedSettings::updateCacheSpinSuffix(int value) spin_cache.setSuffix(tr(" MiB")); } +void AdvancedSettings::updateInterfaceAddressCombo(int) { + //Try to get the currently selected interface name + QString ifaceName; + if (combo_iface.currentIndex() == 0) { + ifaceName = QString(); + } + else { + ifaceName = combo_iface.itemData(combo_iface.currentIndex()).toString(); + } + const QNetworkInterface iface = QNetworkInterface::interfaceFromName(ifaceName); + + //Clear all items and reinsert them, default to all + combo_iface_address.clear(); + combo_iface_address.addItem(tr("All Addresses")); + combo_iface_address.setCurrentIndex(0); + if (!iface.isValid()) { + return; + } + //Found a valid interface, try to get the addresses + const QList addresses = iface.addressEntries(); + const Preferences* const pref = Preferences::instance(); + const QString currentAddress = pref->getNetworkInterfaceAddress(); + + foreach (const QNetworkAddressEntry &entry, addresses) { + QHostAddress ip = entry.ip(); + QString ipString = ip.toString(); + QAbstractSocket::NetworkLayerProtocol protocol = ip.protocol(); + Q_ASSERT(protocol == QAbstractSocket::IPv4Protocol || protocol == QAbstractSocket::IPv6Protocol); + //Only take ipv4 for now? + if (protocol != QAbstractSocket::IPv4Protocol) + continue; + combo_iface_address.addItem( ipString ); + //Try to select the last added one + if (ipString == currentAddress) { + combo_iface_address.setCurrentIndex(combo_iface_address.count() - 1); + } + } +} + void AdvancedSettings::loadAdvancedSettings() { const Preferences* const pref = Preferences::instance(); @@ -280,12 +327,12 @@ void AdvancedSettings::loadAdvancedSettings() combo_iface.setCurrentIndex(i); } addRow(NETWORK_IFACE, tr("Network Interface (requires restart)"), &combo_iface); + // Network interface address + updateInterfaceAddressCombo(combo_iface.currentIndex()); + addRow(NETWORK_IFACE_ADDRESS, tr("Optional IP Address to bind to (requires restart)"), &combo_iface_address); // Listen on IPv6 address cb_listen_ipv6.setChecked(pref->getListenIPv6()); addRow(NETWORK_LISTEN_IPV6, tr("Listen on IPv6 address (requires restart)"), &cb_listen_ipv6); - // Network interface address - txt_iface_address.setText(pref->getNetworkInterfaceAddress()); - addRow(NETWORK_IFACE_ADDRESS, tr("Optional IP Address to bind to (requires restart)"), &txt_iface_address); // Announce address txt_network_address.setText(pref->getNetworkAddress()); addRow(NETWORK_ADDRESS, tr("IP Address to report to trackers (requires restart)"), &txt_network_address); diff --git a/src/gui/advancedsettings.h b/src/gui/advancedsettings.h index ca8945557..7fd525803 100644 --- a/src/gui/advancedsettings.h +++ b/src/gui/advancedsettings.h @@ -52,7 +52,7 @@ signals: private slots: void updateCacheSpinSuffix(int value); - + void updateInterfaceAddressCombo(int index); private: void loadAdvancedSettings(); template void addRow(int row, const QString &rowText, T* widget); @@ -62,8 +62,8 @@ private: QCheckBox cb_os_cache, cb_recheck_completed, cb_resolve_countries, cb_resolve_hosts, cb_super_seeding, cb_program_notifications, cb_tracker_status, cb_confirm_torrent_recheck, cb_enable_tracker_ext, cb_listen_ipv6, cb_announce_all_trackers; - QComboBox combo_iface; - QLineEdit txt_iface_address, txt_network_address; + QComboBox combo_iface, combo_iface_address; + QLineEdit txt_network_address; // OS dependent settings #if defined(Q_OS_WIN) || defined(Q_OS_MAC)