mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-01 13:18:06 -06:00
Expose 'bdecode limits' settings
This includes: * Bdecode depth limit * Bdecode token limit
This commit is contained in:
@@ -335,6 +335,10 @@ void AppController::preferencesAction()
|
||||
data[u"reannounce_when_address_changed"_s] = session->isReannounceWhenAddressChangedEnabled();
|
||||
|
||||
// libtorrent preferences
|
||||
// Bdecode depth limit
|
||||
data[u"bdecode_depth_limit"_s] = pref->getBdecodeDepthLimit();
|
||||
// Bdecode token limit
|
||||
data[u"bdecode_token_limit"_s] = pref->getBdecodeTokenLimit();
|
||||
// Async IO threads
|
||||
data[u"async_io_threads"_s] = session->asyncIOThreads();
|
||||
// Hashing threads
|
||||
@@ -872,6 +876,12 @@ void AppController::setPreferencesAction()
|
||||
session->setReannounceWhenAddressChangedEnabled(it.value().toBool());
|
||||
|
||||
// libtorrent preferences
|
||||
// Bdecode depth limit
|
||||
if (hasKey(u"bdecode_depth_limit"_s))
|
||||
pref->setBdecodeDepthLimit(it.value().toInt());
|
||||
// Bdecode token limit
|
||||
if (hasKey(u"bdecode_token_limit"_s))
|
||||
pref->setBdecodeTokenLimit(it.value().toInt());
|
||||
// Async IO threads
|
||||
if (hasKey(u"async_io_threads"_s))
|
||||
session->setAsyncIOThreads(it.value().toInt());
|
||||
|
||||
@@ -52,7 +52,7 @@
|
||||
#include "base/utils/version.h"
|
||||
#include "api/isessionmanager.h"
|
||||
|
||||
inline const Utils::Version<3, 2> API_VERSION {2, 9, 1};
|
||||
inline const Utils::Version<3, 2> API_VERSION {2, 9, 2};
|
||||
|
||||
class APIController;
|
||||
class AuthController;
|
||||
|
||||
@@ -1046,6 +1046,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.)QBT_TR[CONTEXT=OptionsD
|
||||
<fieldset class="settings">
|
||||
<legend>QBT_TR(libtorrent Section)QBT_TR[CONTEXT=OptionsDialog] (<a href="https://www.libtorrent.org/reference-Settings.html" target="_blank">QBT_TR(Open documentation)QBT_TR[CONTEXT=HttpServer]</a>)</legend>
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="bdecodeDepthLimit">QBT_TR(Bdecode depth limit:)QBT_TR[CONTEXT=OptionsDialog] <a href="https://www.libtorrent.org/reference-Bdecoding.html#bdecode()" target="_blank">(?)</a></label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" id="bdecodeDepthLimit" style="width: 15em;" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="bdecodeTokenLimit">QBT_TR(Bdecode token limit:)QBT_TR[CONTEXT=OptionsDialog] <a href="https://www.libtorrent.org/reference-Bdecoding.html#bdecode()" target="_blank">(?)</a></label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" id="bdecodeTokenLimit" style="width: 15em;" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="asyncIOThreads">QBT_TR(Asynchronous I/O threads:)QBT_TR[CONTEXT=OptionsDialog] <a href="https://www.libtorrent.org/reference-Settings.html#aio_threads" target="_blank">(?)</a></label>
|
||||
@@ -2161,6 +2177,8 @@ Use ';' to split multiple entries. Can use wildcard '*'.)QBT_TR[CONTEXT=OptionsD
|
||||
$('resolvePeerCountries').setProperty('checked', pref.resolve_peer_countries);
|
||||
$('reannounceWhenAddressChanged').setProperty('checked', pref.reannounce_when_address_changed);
|
||||
// libtorrent section
|
||||
$('bdecodeDepthLimit').setProperty('value', pref.bdecode_depth_limit);
|
||||
$('bdecodeTokenLimit').setProperty('value', pref.bdecode_token_limit);
|
||||
$('asyncIOThreads').setProperty('value', pref.async_io_threads);
|
||||
$('hashingThreads').setProperty('value', pref.hashing_threads);
|
||||
$('filePoolSize').setProperty('value', pref.file_pool_size);
|
||||
@@ -2579,6 +2597,8 @@ Use ';' to split multiple entries. Can use wildcard '*'.)QBT_TR[CONTEXT=OptionsD
|
||||
settings.set('reannounce_when_address_changed', $('reannounceWhenAddressChanged').getProperty('checked'));
|
||||
|
||||
// libtorrent section
|
||||
settings.set('bdecode_depth_limit', $('bdecodeDepthLimit').getProperty('value'));
|
||||
settings.set('bdecode_token_limit', $('bdecodeTokenLimit').getProperty('value'));
|
||||
settings.set('async_io_threads', $('asyncIOThreads').getProperty('value'));
|
||||
settings.set('hashing_threads', $('hashingThreads').getProperty('value'));
|
||||
settings.set('file_pool_size', $('filePoolSize').getProperty('value'));
|
||||
|
||||
Reference in New Issue
Block a user