mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-08 22:57:52 +00:00
exclude Token from requests
This commit is contained in:
parent
42f314669f
commit
55f6fe6d3a
@ -168,8 +168,11 @@ namespace client
|
|||||||
{
|
{
|
||||||
LogPrint (eLogInfo, v.first);
|
LogPrint (eLogInfo, v.first);
|
||||||
if (!v.first.empty())
|
if (!v.first.empty())
|
||||||
|
{
|
||||||
|
if (v.first != I2P_CONTROL_PARAM_TOKEN) // exclude Token. TODO: verify it
|
||||||
params[v.first] = v.second.data ();
|
params[v.first] = v.second.data ();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
std::map<std::string, std::string> results;
|
std::map<std::string, std::string> results;
|
||||||
(this->*(it->second))(params, results);
|
(this->*(it->second))(params, results);
|
||||||
SendResponse (socket, buf, pt.get<std::string>(I2P_CONTROL_PROPERTY_ID), results, isHtml);
|
SendResponse (socket, buf, pt.get<std::string>(I2P_CONTROL_PROPERTY_ID), results, isHtml);
|
||||||
|
Loading…
Reference in New Issue
Block a user