mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
71 lines
1.2 KiB
C++
71 lines
1.2 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)
|
|
{
|
|
}
|
|
|
|
util::StatusObject
|
|
ExtractStatus() const override
|
|
{
|
|
return rc.ExtractStatus();
|
|
}
|
|
|
|
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());
|
|
}
|
|
|
|
util::StatusObject
|
|
ExtractStatus() const override
|
|
{
|
|
return introset.ExtractStatus();
|
|
}
|
|
|
|
bool
|
|
operator<(const ISNode& other) const
|
|
{
|
|
return introset.T < other.introset.T;
|
|
}
|
|
};
|
|
} // namespace dht
|
|
} // namespace llarp
|
|
|
|
#endif
|