Browse Source

Make uTP rate limited by default

adaptive-webui-19844
Christophe Dumez 12 years ago
parent
commit
399d957142
  1. 4
      src/preferences/preferences.h

4
src/preferences/preferences.h

@ -559,11 +559,11 @@ public: @@ -559,11 +559,11 @@ public:
}
bool isuTPRateLimited() const {
return value(QString::fromUtf8("Preferences/Bittorrent/uTP_rate_limiting"), false).toBool();
return value(QString::fromUtf8("Preferences/Bittorrent/uTP_rate_limited"), true).toBool();
}
void setuTPRateLimited(bool enabled) {
setValue("Preferences/Bittorrent/uTP_rate_limiting", enabled);
setValue("Preferences/Bittorrent/uTP_rate_limited", enabled);
}
bool isDHTEnabled() const {

Loading…
Cancel
Save