2018-07-09 17:32:11 +00:00
|
|
|
#ifndef LLARP_SERVICE_INFO_HPP
|
|
|
|
#define LLARP_SERVICE_INFO_HPP
|
|
|
|
#include <llarp/bencode.hpp>
|
|
|
|
#include <llarp/crypto.hpp>
|
|
|
|
#include <llarp/service/types.hpp>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace service
|
|
|
|
{
|
|
|
|
struct ServiceInfo : public llarp::IBEncodeMessage
|
|
|
|
{
|
|
|
|
llarp::PubKey enckey;
|
|
|
|
llarp::PubKey signkey;
|
|
|
|
uint64_t version = 0;
|
|
|
|
VanityNonce vanity;
|
|
|
|
|
|
|
|
ServiceInfo();
|
|
|
|
|
|
|
|
~ServiceInfo();
|
|
|
|
|
2018-07-11 16:11:19 +00:00
|
|
|
bool
|
|
|
|
operator==(const ServiceInfo& other) const
|
|
|
|
{
|
|
|
|
return enckey == other.enckey && signkey == other.signkey
|
|
|
|
&& version == other.version && vanity == other.vanity;
|
|
|
|
}
|
|
|
|
|
2018-07-09 17:32:11 +00:00
|
|
|
ServiceInfo&
|
|
|
|
operator=(const ServiceInfo& other)
|
|
|
|
{
|
|
|
|
enckey = other.enckey;
|
|
|
|
signkey = other.signkey;
|
|
|
|
version = other.version;
|
|
|
|
vanity = other.vanity;
|
2018-07-18 03:10:21 +00:00
|
|
|
UpdateAddr();
|
2018-07-09 17:32:11 +00:00
|
|
|
return *this;
|
|
|
|
};
|
|
|
|
|
2018-07-18 03:10:21 +00:00
|
|
|
bool
|
|
|
|
operator<(const ServiceInfo& other) const
|
|
|
|
{
|
|
|
|
return Addr() < other.Addr();
|
|
|
|
}
|
|
|
|
|
2018-07-09 17:32:11 +00:00
|
|
|
friend std::ostream&
|
|
|
|
operator<<(std::ostream& out, const ServiceInfo& i)
|
|
|
|
{
|
|
|
|
return out << "[e=" << i.enckey << " s=" << i.signkey
|
|
|
|
<< " v=" << i.version << " x=" << i.vanity << "]";
|
|
|
|
}
|
|
|
|
|
2018-07-16 03:32:13 +00:00
|
|
|
/// compute .loki address
|
|
|
|
std::string
|
|
|
|
Name() const;
|
|
|
|
|
2018-07-18 03:10:21 +00:00
|
|
|
bool
|
|
|
|
UpdateAddr();
|
|
|
|
|
|
|
|
const Address&
|
|
|
|
Addr() const
|
|
|
|
{
|
|
|
|
return m_CachedAddr;
|
|
|
|
}
|
|
|
|
|
2018-07-09 17:32:11 +00:00
|
|
|
/// calculate our address
|
|
|
|
bool
|
2018-07-12 13:43:37 +00:00
|
|
|
CalculateAddress(byte_t* buf) const;
|
2018-07-09 17:32:11 +00:00
|
|
|
|
2018-07-19 04:58:39 +00:00
|
|
|
bool
|
|
|
|
BDecode(llarp_buffer_t* buf)
|
|
|
|
{
|
|
|
|
if(!IBEncodeMessage::BDecode(buf))
|
|
|
|
return false;
|
|
|
|
return CalculateAddress(m_CachedAddr);
|
|
|
|
}
|
|
|
|
|
2018-07-09 17:32:11 +00:00
|
|
|
bool
|
|
|
|
BEncode(llarp_buffer_t* buf) const;
|
|
|
|
|
|
|
|
bool
|
|
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t* buf);
|
2018-07-18 03:10:21 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Address m_CachedAddr;
|
2018-07-09 17:32:11 +00:00
|
|
|
};
|
|
|
|
} // namespace service
|
|
|
|
} // namespace llarp
|
|
|
|
|
|
|
|
#endif
|