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/service/context.cpp

68 lines
1.7 KiB
C++

#include <llarp/handlers/tun.hpp>
#include <llarp/service/context.hpp>
namespace llarp
{
namespace service
{
Context::Context(llarp_router *r) : m_Router(r)
{
}
Context::~Context()
{
auto itr = m_Endpoints.begin();
while(itr != m_Endpoints.end())
{
itr = m_Endpoints.erase(itr);
}
}
void
Context::Tick()
{
auto now = llarp_time_now_ms();
auto itr = m_Endpoints.begin();
while(itr != m_Endpoints.end())
{
itr->second->Tick(now);
++itr;
}
}
bool
Context::AddEndpoint(const Config::section_t &conf)
{
auto itr = m_Endpoints.find(conf.first);
if(itr != m_Endpoints.end())
{
llarp::LogError("cannot add hidden service with duplicate name: ",
conf.first);
return false;
}
std::unique_ptr< llarp::service::Endpoint > service(
new llarp::handlers::TunEndpoint(conf.first, m_Router));
for(const auto &option : conf.second)
{
auto &k = option.first;
auto &v = option.second;
if(!service->SetOption(k, v))
{
llarp::LogError("failed to set ", k, "=", v,
" for hidden service endpoint ", conf.first);
return false;
}
}
if(service->Start())
{
llarp::LogInfo("added hidden service endpoint ", service->Name());
m_Endpoints.insert(std::make_pair(conf.first, std::move(service)));
return true;
}
llarp::LogError("failed to start hidden service endpoint ", conf.first);
return false;
}
} // namespace service
} // namespace llarp