mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
72 lines
1.2 KiB
C++
72 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/intro_set.hpp>
|
|
#include <utility>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace dht
|
|
{
|
|
struct RCNode
|
|
{
|
|
RouterContact rc;
|
|
Key_t ID;
|
|
|
|
RCNode()
|
|
{
|
|
ID.Zero();
|
|
}
|
|
|
|
RCNode(const RouterContact& other) : rc(other), ID(other.pubkey)
|
|
{
|
|
}
|
|
|
|
util::StatusObject
|
|
ExtractStatus() const
|
|
{
|
|
return rc.ExtractStatus();
|
|
}
|
|
|
|
bool
|
|
operator<(const RCNode& other) const
|
|
{
|
|
return rc.last_updated < other.rc.last_updated;
|
|
}
|
|
};
|
|
|
|
struct ISNode
|
|
{
|
|
service::EncryptedIntroSet introset;
|
|
|
|
Key_t ID;
|
|
|
|
ISNode()
|
|
{
|
|
ID.Zero();
|
|
}
|
|
|
|
ISNode(service::EncryptedIntroSet other) : introset(std::move(other))
|
|
{
|
|
ID = Key_t(introset.derivedSigningKey.as_array());
|
|
}
|
|
|
|
util::StatusObject
|
|
ExtractStatus() const
|
|
{
|
|
return introset.ExtractStatus();
|
|
}
|
|
|
|
bool
|
|
operator<(const ISNode& other) const
|
|
{
|
|
return introset.signedAt < other.introset.signedAt;
|
|
}
|
|
};
|
|
} // namespace dht
|
|
} // namespace llarp
|
|
|
|
#endif
|