mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
3ab7db7723
* fix up macos route poker logic * fix typo * use string_view * add forgotten header * full paths * add debugging * catch exception on adding route * workarround for macos * typofix * typofix * fix for macos * fix command for macos * because we autopoke remove explicit route poking in rpc * probably final fix of macos route poking * split routes instead of deleting them * dynamic route poking * move log statement for introset lookup and dont consider bad sessions as able to send * send convotag reset frame when we have no session * add exit map to rpc * use split_any
101 lines
2.7 KiB
C++
101 lines
2.7 KiB
C++
#include <service/endpoint_state.hpp>
|
|
|
|
#include <exit/session.hpp>
|
|
#include <hook/shell.hpp>
|
|
#include <service/endpoint.hpp>
|
|
#include <service/outbound_context.hpp>
|
|
#include <util/str.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace service
|
|
{
|
|
bool
|
|
EndpointState::Configure(const NetworkConfig& conf)
|
|
{
|
|
if (conf.m_keyfile.has_value())
|
|
m_Keyfile = conf.m_keyfile->string();
|
|
m_SnodeBlacklist = conf.m_snodeBlacklist;
|
|
m_ExitEnabled = conf.m_AllowExit;
|
|
|
|
for (const auto& record : conf.m_SRVRecords)
|
|
{
|
|
m_IntroSet.SRVs.push_back(record.toTuple());
|
|
}
|
|
|
|
// TODO:
|
|
/*
|
|
if (k == "on-up")
|
|
{
|
|
m_OnUp = hooks::ExecShellBackend(v);
|
|
if (m_OnUp)
|
|
LogInfo(name, " added on up script: ", v);
|
|
else
|
|
LogError(name, " failed to add on up script");
|
|
}
|
|
if (k == "on-down")
|
|
{
|
|
m_OnDown = hooks::ExecShellBackend(v);
|
|
if (m_OnDown)
|
|
LogInfo(name, " added on down script: ", v);
|
|
else
|
|
LogError(name, " failed to add on down script");
|
|
}
|
|
if (k == "on-ready")
|
|
{
|
|
m_OnReady = hooks::ExecShellBackend(v);
|
|
if (m_OnReady)
|
|
LogInfo(name, " added on ready script: ", v);
|
|
else
|
|
LogError(name, " failed to add on ready script");
|
|
}
|
|
*/
|
|
return true;
|
|
}
|
|
|
|
util::StatusObject
|
|
EndpointState::ExtractStatus(util::StatusObject& obj) const
|
|
{
|
|
obj["lastPublished"] = to_json(m_LastPublish);
|
|
obj["lastPublishAttempt"] = to_json(m_LastPublishAttempt);
|
|
obj["introset"] = m_IntroSet.ExtractStatus();
|
|
static auto getSecond = [](const auto& item) -> auto
|
|
{
|
|
return item.second->ExtractStatus();
|
|
};
|
|
|
|
std::transform(
|
|
m_DeadSessions.begin(),
|
|
m_DeadSessions.end(),
|
|
std::back_inserter(obj["deadSessions"]),
|
|
getSecond);
|
|
std::transform(
|
|
m_RemoteSessions.begin(),
|
|
m_RemoteSessions.end(),
|
|
std::back_inserter(obj["remoteSessions"]),
|
|
getSecond);
|
|
std::transform(
|
|
m_PendingLookups.begin(),
|
|
m_PendingLookups.end(),
|
|
std::back_inserter(obj["lookups"]),
|
|
getSecond);
|
|
std::transform(
|
|
m_SNodeSessions.begin(),
|
|
m_SNodeSessions.end(),
|
|
std::back_inserter(obj["snodeSessions"]),
|
|
[](const auto& item) { return item.second.first->ExtractStatus(); });
|
|
|
|
util::StatusObject sessionObj{};
|
|
|
|
for (const auto& item : m_Sessions)
|
|
{
|
|
std::string k = item.first.ToHex();
|
|
sessionObj[k] = item.second.ExtractStatus();
|
|
}
|
|
|
|
obj["converstations"] = sessionObj;
|
|
return obj;
|
|
}
|
|
} // namespace service
|
|
} // namespace llarp
|