Add unl_reset command.

This commit is contained in:
Arthur Britto
2012-03-21 14:43:13 -07:00
parent d070b10f21
commit 867835fcfa
3 changed files with 17 additions and 4 deletions

View File

@@ -557,8 +557,14 @@ Json::Value RPCServer::doUnlList(Json::Value& params) {
return theApp->getUNL().getUnlJson();
}
// unl_reset
Json::Value RPCServer::doUnlReset(Json::Value& params) {
return "not implemented";
if(!params.size())
{
theApp->getUNL().reset();
return "removing nodes";
}
else return "invalid params";
}
Json::Value RPCServer::doCommand(const std::string& command, Json::Value& params)