mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 16:34:13 +00:00
* SAM.cpp : boost::lexical_cast -> std::stoi
This commit is contained in:
parent
1cd415a3ae
commit
bbcb9af01f
5
SAM.cpp
5
SAM.cpp
@ -3,7 +3,6 @@
|
|||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#endif
|
#endif
|
||||||
#include <boost/lexical_cast.hpp>
|
|
||||||
#include "Base.h"
|
#include "Base.h"
|
||||||
#include "Identity.h"
|
#include "Identity.h"
|
||||||
#include "Log.h"
|
#include "Log.h"
|
||||||
@ -420,7 +419,7 @@ namespace client
|
|||||||
LogPrint (eLogDebug, "SAM: datagram send: ", buf, " ", len);
|
LogPrint (eLogDebug, "SAM: datagram send: ", buf, " ", len);
|
||||||
std::map<std::string, std::string> params;
|
std::map<std::string, std::string> params;
|
||||||
ExtractParams (buf, params);
|
ExtractParams (buf, params);
|
||||||
size_t size = boost::lexical_cast<int>(params[SAM_PARAM_SIZE]), offset = data - buf;
|
size_t size = std::stoi(params[SAM_PARAM_SIZE]), offset = data - buf;
|
||||||
if (offset + size <= len)
|
if (offset + size <= len)
|
||||||
{
|
{
|
||||||
if (m_Session)
|
if (m_Session)
|
||||||
@ -819,7 +818,7 @@ namespace client
|
|||||||
auto it = params->find (SAM_PARAM_SIGNATURE_TYPE);
|
auto it = params->find (SAM_PARAM_SIGNATURE_TYPE);
|
||||||
if (it != params->end ())
|
if (it != params->end ())
|
||||||
// TODO: extract string values
|
// TODO: extract string values
|
||||||
signatureType = boost::lexical_cast<int> (it->second);
|
signatureType = std::stoi(it->second);
|
||||||
}
|
}
|
||||||
localDestination = i2p::client::context.CreateNewLocalDestination (true, signatureType, params);
|
localDestination = i2p::client::context.CreateNewLocalDestination (true, signatureType, params);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user