diff --git a/ChangeLog b/ChangeLog index 83e8a202..bb9c3d48 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-11-25 Tatsuhiro Tsujikawa + + Added --bt-request-peer-speed-limit option to changeOption XML-RPC + method. + * src/XmlRpcMethod.cc + 2009-11-25 Tatsuhiro Tsujikawa Documented about BitTorrent Magnet URI in man page. diff --git a/src/XmlRpcMethod.cc b/src/XmlRpcMethod.cc index 0253d9fd..17506e92 100644 --- a/src/XmlRpcMethod.cc +++ b/src/XmlRpcMethod.cc @@ -140,8 +140,9 @@ static void applyOption(InputIterator optNameFirst, const std::set& 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 options (&OPTIONS[0], &OPTIONS[arrayLength(OPTIONS)]);