PeersHandler::handleRemoveNode only remove location

Move documentation in header
This commit is contained in:
Gioacchino Mazzurco 2017-09-15 09:03:50 +02:00
parent 7888ec617a
commit 341c94ee6c
2 changed files with 15 additions and 27 deletions

View file

@ -72,10 +72,19 @@ private:
void handleGetNodeOptions(Request& req, Response& resp);
void handleSetNodeOptions(Request& req, Response& resp);
/**
* \brief Remove specific location from trusted nodes
*
* \param [in] req request from user either peer_id is needed.
* \param [out] resp response to user
*/
void handleRemoveNode(Request &req, Response &resp);
void handleGetInactiveUsers(Request &req, Response &resp);
// a helper which ensures proper mutex locking
/// Helper which ensures proper mutex locking
StateToken getCurrentStateToken();
StateTokenServer* mStateTokenServer;