mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
cef2ff7782
- Up and running locally, no connections yet - Next: flip testnet and do the gosh dang thing
43 lines
1020 B
C++
43 lines
1020 B
C++
#include "contacts.hpp"
|
|
|
|
#include <llarp/messages/dht.hpp>
|
|
#include <llarp/router/router.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
Contacts::Contacts(Router& r) : _router{r}, _local_key{r.pubkey()}
|
|
{
|
|
timer_keepalive = std::make_shared<int>(0);
|
|
|
|
_introset_nodes = std::make_unique<dht::Bucket<dht::ISNode>>(_local_key, llarp::randint);
|
|
}
|
|
|
|
std::optional<service::EncryptedIntroSet>
|
|
Contacts::get_introset_by_location(const dht::Key_t& key) const
|
|
{
|
|
std::optional<service::EncryptedIntroSet> enc = std::nullopt;
|
|
|
|
auto& introsets = _introset_nodes->nodes;
|
|
|
|
if (auto itr = introsets.find(key); itr != introsets.end())
|
|
enc = itr->second.introset;
|
|
|
|
return enc;
|
|
}
|
|
|
|
util::StatusObject
|
|
Contacts::ExtractStatus() const
|
|
{
|
|
util::StatusObject obj{
|
|
{"services", _introset_nodes->ExtractStatus()}, {"local_key", _local_key.ToHex()}};
|
|
return obj;
|
|
}
|
|
|
|
void
|
|
Contacts::put_intro(service::EncryptedIntroSet enc)
|
|
{
|
|
_introset_nodes->PutNode(std::move(enc));
|
|
}
|
|
|
|
} // namespace llarp
|