mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-02 21:52:32 -06:00
Migrate last setting related to interfaces to the new system.
This commit is contained in:
@@ -290,6 +290,7 @@ Session::Session(QObject *parent)
|
||||
, m_port(BITTORRENT_SESSION_KEY("Port"), 8999)
|
||||
, m_useRandomPort(BITTORRENT_SESSION_KEY("UseRandomPort"), false)
|
||||
, m_networkInterface(BITTORRENT_SESSION_KEY("Interface"))
|
||||
, m_networkInterfaceName(BITTORRENT_SESSION_KEY("InterfaceName"))
|
||||
, m_networkInterfaceAddress(BITTORRENT_SESSION_KEY("InterfaceAddress"))
|
||||
, m_isIPv6Enabled(BITTORRENT_SESSION_KEY("IPv6Enabled"), false)
|
||||
, m_encryption(BITTORRENT_SESSION_KEY("Encryption"), 0)
|
||||
@@ -2251,6 +2252,16 @@ void Session::setNetworkInterface(const QString &interface)
|
||||
}
|
||||
}
|
||||
|
||||
QString Session::networkInterfaceName() const
|
||||
{
|
||||
return m_networkInterfaceName;
|
||||
}
|
||||
|
||||
void Session::setNetworkInterfaceName(const QString &name)
|
||||
{
|
||||
m_networkInterfaceName = name;
|
||||
}
|
||||
|
||||
QString Session::networkInterfaceAddress() const
|
||||
{
|
||||
return m_networkInterfaceAddress;
|
||||
|
||||
@@ -260,6 +260,8 @@ namespace BitTorrent
|
||||
void setUseRandomPort(bool value);
|
||||
QString networkInterface() const;
|
||||
void setNetworkInterface(const QString &interface);
|
||||
QString networkInterfaceName() const;
|
||||
void setNetworkInterfaceName(const QString &name);
|
||||
QString networkInterfaceAddress() const;
|
||||
void setNetworkInterfaceAddress(const QString &address);
|
||||
bool isIPv6Enabled() const;
|
||||
@@ -551,6 +553,7 @@ namespace BitTorrent
|
||||
CachedSettingValue<int> m_port;
|
||||
CachedSettingValue<bool> m_useRandomPort;
|
||||
CachedSettingValue<QString> m_networkInterface;
|
||||
CachedSettingValue<QString> m_networkInterfaceName;
|
||||
CachedSettingValue<QString> m_networkInterfaceAddress;
|
||||
CachedSettingValue<bool> m_isIPv6Enabled;
|
||||
CachedSettingValue<int> m_encryption;
|
||||
|
||||
Reference in New Issue
Block a user