Browse Source

handle i2p.router.netdb.knownpeers RouterInfo request

pull/147/head
orignal 10 years ago
parent
commit
70b6c024bf
  1. 9
      I2PControl.cpp
  2. 4
      I2PControl.h

9
I2PControl.cpp

@ -3,6 +3,7 @@ @@ -3,6 +3,7 @@
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
#include "Log.h"
#include "NetDb.h"
#include "Timestamp.h"
#include "I2PControl.h"
@ -117,6 +118,7 @@ namespace client @@ -117,6 +118,7 @@ namespace client
std::map<std::string, std::string> params;
for (auto& v: pt.get_child (I2P_CONTROL_PROPERTY_PARAMS))
{
LogPrint (eLogInfo, v.first);
if (!v.first.empty())
params[v.first] = v.second.data ();
}
@ -189,6 +191,13 @@ namespace client @@ -189,6 +191,13 @@ namespace client
void I2PControlService::RouterInfoHandler (const std::map<std::string, std::string>& params, std::map<std::string, std::string>& results)
{
LogPrint (eLogDebug, "I2PControl RouterInfo");
for (auto& it :params)
{
LogPrint (eLogDebug, it.first);
if (it.first == I2P_CONTROL_PARAM_RI_NETDB_KNOWNPEERS)
results[I2P_CONTROL_PARAM_RI_NETDB_KNOWNPEERS] = boost::lexical_cast<std::string>(i2p::data::netdb.GetNumRouters ());
}
}
}
}

4
I2PControl.h

@ -33,6 +33,10 @@ namespace client @@ -33,6 +33,10 @@ namespace client
const char I2P_CONTROL_PARAM_ECHO[] = "Echo";
const char I2P_CONTROL_PARAM_RESULT[] = "Result";
// RouterInfo params
const char I2P_CONTROL_PARAM_RI_NETDB_KNOWNPEERS[] = "i2p.router.netdb.knownpeers";
class I2PControlService
{
public:

Loading…
Cancel
Save