mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Rename variables in Session class
This commit is contained in:
parent
89c58921de
commit
29fe0029f0
2 changed files with 10 additions and 10 deletions
|
@ -923,12 +923,12 @@ void Session::configureComponents()
|
|||
|
||||
configurePeerClasses();
|
||||
|
||||
if (m_IPFilteringChanged) {
|
||||
if (!m_IPFilteringConfigured) {
|
||||
if (isIPFilteringEnabled())
|
||||
enableIPFilter();
|
||||
else
|
||||
disableIPFilter();
|
||||
m_IPFilteringChanged = false;
|
||||
m_IPFilteringConfigured = true;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1120,7 +1120,7 @@ void Session::loadLTSettings(lt::settings_pack &settingsPack)
|
|||
#ifdef Q_OS_WIN
|
||||
QString chosenIP;
|
||||
#endif
|
||||
if (m_listenInterfaceChanged) {
|
||||
if (!m_listenInterfaceConfigured) {
|
||||
const int port = useRandomPort() ? 0 : this->port();
|
||||
if (port > 0) // user specified port
|
||||
settingsPack.set_int(lt::settings_pack::max_retry_port_bind, 0);
|
||||
|
@ -1176,7 +1176,7 @@ void Session::loadLTSettings(lt::settings_pack &settingsPack)
|
|||
settingsPack.set_str(lt::settings_pack::outgoing_interfaces, networkInterface().toStdString());
|
||||
#endif // Q_OS_WIN
|
||||
|
||||
m_listenInterfaceChanged = false;
|
||||
m_listenInterfaceConfigured = true;
|
||||
}
|
||||
|
||||
applyBandwidthLimits(settingsPack);
|
||||
|
@ -2369,7 +2369,7 @@ QStringList Session::getListeningIPs() const
|
|||
// the BitTorrent session will listen to
|
||||
void Session::configureListeningInterface()
|
||||
{
|
||||
m_listenInterfaceChanged = true;
|
||||
m_listenInterfaceConfigured = false;
|
||||
configureDeferred();
|
||||
}
|
||||
|
||||
|
@ -2695,7 +2695,7 @@ void Session::setIPFilteringEnabled(const bool enabled)
|
|||
{
|
||||
if (enabled != m_isIPFilteringEnabled) {
|
||||
m_isIPFilteringEnabled = enabled;
|
||||
m_IPFilteringChanged = true;
|
||||
m_IPFilteringConfigured = false;
|
||||
configureDeferred();
|
||||
}
|
||||
}
|
||||
|
@ -2710,7 +2710,7 @@ void Session::setIPFilterFile(QString path)
|
|||
path = Utils::Fs::toUniformPath(path);
|
||||
if (path != IPFilterFile()) {
|
||||
m_IPFilterFile = path;
|
||||
m_IPFilteringChanged = true;
|
||||
m_IPFilteringConfigured = false;
|
||||
configureDeferred();
|
||||
}
|
||||
}
|
||||
|
@ -2744,7 +2744,7 @@ void Session::setBannedIPs(const QStringList &newList)
|
|||
// also here we have to recreate filter list including 3rd party ban file
|
||||
// and install it again into m_session
|
||||
m_bannedIPs = filteredList;
|
||||
m_IPFilteringChanged = true;
|
||||
m_IPFilteringConfigured = false;
|
||||
configureDeferred();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue