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/dht/node.hpp

83 lines
1.7 KiB
C++

#ifndef LLARP_DHT_NODE_HPP
#define LLARP_DHT_NODE_HPP
#include <dht/key.hpp>
#include <router_contact.hpp>
#include <service/IntroSet.hpp>
namespace llarp
{
namespace dht
{
struct RCNode : public util::IStateful
{
RouterContact rc;
Key_t ID;
RCNode()
{
ID.Zero();
}
RCNode(const RouterContact& other) : rc(other), ID(other.pubkey)
{
}
void
ExtractStatus(util::StatusObject& obj) const override
{
obj.PutInt("lastUpdated", rc.last_updated);
}
bool
operator<(const RCNode& other) const
{
return rc.last_updated < other.rc.last_updated;
}
};
struct ISNode : public util::IStateful
{
service::IntroSet introset;
Key_t ID;
ISNode()
{
ID.Zero();
}
ISNode(const service::IntroSet& other) : introset(other)
{
introset.A.CalculateAddress(ID.as_array());
}
void
ExtractStatus(util::StatusObject& obj) const override
{
obj.PutInt("timestamp", introset.T);
std::vector< util::StatusObject > introsObjs;
for(const auto intro : introset.I)
{
util::StatusObject introObj;
introObj.PutString("router", intro.router.ToHex());
introObj.PutInt("expiresAt", intro.expiresAt);
introObj.PutInt("latency", intro.latency);
introObj.PutInt("version", intro.version);
introsObjs.emplace_back(introObj);
}
obj.PutObjectArray("intros", introsObjs);
}
bool
operator<(const ISNode& other) const
{
return introset.T < other.introset.T;
}
};
} // namespace dht
} // namespace llarp
#endif