2009-11-25 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>

Added --bt-request-peer-speed-limit option to changeOption XML-RPC
	method.
	* src/XmlRpcMethod.cc
pull/1/head
Tatsuhiro Tsujikawa 2009-11-25 12:47:09 +00:00
parent 4ede925ce3
commit d0e0db1eb1
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2009-11-25 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Added --bt-request-peer-speed-limit option to changeOption XML-RPC
method.
* src/XmlRpcMethod.cc
2009-11-25 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Documented about BitTorrent Magnet URI in man page.

View File

@ -140,8 +140,9 @@ static void applyOption(InputIterator optNameFirst,
const std::set<std::string>& listChangeableOptions()
{
static const std::string OPTIONS[] = {
PREF_MAX_UPLOAD_LIMIT,
PREF_BT_REQUEST_PEER_SPEED_LIMIT,
PREF_MAX_DOWNLOAD_LIMIT,
PREF_MAX_UPLOAD_LIMIT
};
static std::set<std::string> options
(&OPTIONS[0], &OPTIONS[arrayLength(OPTIONS)]);