You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/simulation/sim_context.cpp

39 lines
758 B
C++

#include <simulation/sim_context.hpp>
#include <llarp.hpp>
namespace llarp
{
namespace simulate
{
Simulation::Simulation() : m_CryptoManager(new sodium::CryptoLibSodium())
{
}
void
Simulation::NodeUp(llarp::Context *)
{
}
Node_ptr
Simulation::AddNode(const std::string &name)
{
auto itr = m_Nodes.find(name);
if(itr == m_Nodes.end())
{
itr =
m_Nodes
.emplace(name,
std::make_shared< llarp::Context >(shared_from_this()))
.first;
}
return itr->second;
}
void
Simulation::DelNode(const std::string &name)
{
m_Nodes.erase(name);
}
} // namespace simulate
} // namespace llarp