|
|
@ -276,8 +276,8 @@ namespace BitTorrent |
|
|
|
void setTrackerEnabled(bool enabled); |
|
|
|
void setTrackerEnabled(bool enabled); |
|
|
|
bool isAppendExtensionEnabled() const; |
|
|
|
bool isAppendExtensionEnabled() const; |
|
|
|
void setAppendExtensionEnabled(bool enabled); |
|
|
|
void setAppendExtensionEnabled(bool enabled); |
|
|
|
uint refreshInterval() const; |
|
|
|
int refreshInterval() const; |
|
|
|
void setRefreshInterval(uint value); |
|
|
|
void setRefreshInterval(int value); |
|
|
|
bool isPreallocationEnabled() const; |
|
|
|
bool isPreallocationEnabled() const; |
|
|
|
void setPreallocationEnabled(bool enabled); |
|
|
|
void setPreallocationEnabled(bool enabled); |
|
|
|
QString torrentExportDirectory() const; |
|
|
|
QString torrentExportDirectory() const; |
|
|
@ -302,8 +302,8 @@ namespace BitTorrent |
|
|
|
bool isBandwidthSchedulerEnabled() const; |
|
|
|
bool isBandwidthSchedulerEnabled() const; |
|
|
|
void setBandwidthSchedulerEnabled(bool enabled); |
|
|
|
void setBandwidthSchedulerEnabled(bool enabled); |
|
|
|
|
|
|
|
|
|
|
|
uint saveResumeDataInterval() const; |
|
|
|
int saveResumeDataInterval() const; |
|
|
|
void setSaveResumeDataInterval(uint value); |
|
|
|
void setSaveResumeDataInterval(int value); |
|
|
|
int port() const; |
|
|
|
int port() const; |
|
|
|
void setPort(int port); |
|
|
|
void setPort(int port); |
|
|
|
bool useRandomPort() const; |
|
|
|
bool useRandomPort() const; |
|
|
@ -697,7 +697,7 @@ namespace BitTorrent |
|
|
|
CachedSettingValue<bool> m_isAddTorrentPaused; |
|
|
|
CachedSettingValue<bool> m_isAddTorrentPaused; |
|
|
|
CachedSettingValue<bool> m_isKeepTorrentTopLevelFolder; |
|
|
|
CachedSettingValue<bool> m_isKeepTorrentTopLevelFolder; |
|
|
|
CachedSettingValue<bool> m_isAppendExtensionEnabled; |
|
|
|
CachedSettingValue<bool> m_isAppendExtensionEnabled; |
|
|
|
CachedSettingValue<uint> m_refreshInterval; |
|
|
|
CachedSettingValue<int> m_refreshInterval; |
|
|
|
CachedSettingValue<bool> m_isPreallocationEnabled; |
|
|
|
CachedSettingValue<bool> m_isPreallocationEnabled; |
|
|
|
CachedSettingValue<QString> m_torrentExportDirectory; |
|
|
|
CachedSettingValue<QString> m_torrentExportDirectory; |
|
|
|
CachedSettingValue<QString> m_finishedTorrentExportDirectory; |
|
|
|
CachedSettingValue<QString> m_finishedTorrentExportDirectory; |
|
|
@ -707,7 +707,7 @@ namespace BitTorrent |
|
|
|
CachedSettingValue<int> m_altGlobalUploadSpeedLimit; |
|
|
|
CachedSettingValue<int> m_altGlobalUploadSpeedLimit; |
|
|
|
CachedSettingValue<bool> m_isAltGlobalSpeedLimitEnabled; |
|
|
|
CachedSettingValue<bool> m_isAltGlobalSpeedLimitEnabled; |
|
|
|
CachedSettingValue<bool> m_isBandwidthSchedulerEnabled; |
|
|
|
CachedSettingValue<bool> m_isBandwidthSchedulerEnabled; |
|
|
|
CachedSettingValue<uint> m_saveResumeDataInterval; |
|
|
|
CachedSettingValue<int> m_saveResumeDataInterval; |
|
|
|
CachedSettingValue<int> m_port; |
|
|
|
CachedSettingValue<int> m_port; |
|
|
|
CachedSettingValue<bool> m_useRandomPort; |
|
|
|
CachedSettingValue<bool> m_useRandomPort; |
|
|
|
CachedSettingValue<QString> m_networkInterface; |
|
|
|
CachedSettingValue<QString> m_networkInterface; |
|
|
|