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/service/address.hpp

91 lines
1.7 KiB
C++

#ifndef LLARP_SERVICE_ADDRESS_HPP
#define LLARP_SERVICE_ADDRESS_HPP
#include <aligned.hpp>
#include <dht/key.hpp>
#include <router_id.hpp>
#include <functional>
#include <numeric>
#include <string>
namespace llarp
{
namespace service
{
6 years ago
/// Snapp/Snode Address
struct Address : public AlignedBuffer< 32 >
{
std::string
6 years ago
ToString(const char* tld = ".loki") const;
bool
6 years ago
FromString(const std::string& str, const char* tld = ".loki");
Address() : AlignedBuffer< SIZE >()
6 years ago
{
}
Address(const Data& buf) : AlignedBuffer< SIZE >(buf)
{
}
Address(const Address& other) : AlignedBuffer< SIZE >(other.as_array())
{
}
bool
operator<(const Address& other) const
{
return as_array() < other.as_array();
}
friend std::ostream&
operator<<(std::ostream& out, const Address& self)
{
return out << self.ToString();
}
bool
operator==(const Address& other) const
{
return as_array() == other.as_array();
}
bool
operator!=(const Address& other) const
{
return as_array() != other.as_array();
}
Address&
operator=(const Address& other) = default;
dht::Key_t
ToKey() const
{
return dht::Key_t(as_array());
}
RouterID
ToRouter() const
{
return RouterID(as_array());
}
struct Hash
{
size_t
operator()(const Address& buf) const
{
return std::accumulate(buf.begin(), buf.end(), 0,
std::bit_xor< size_t >());
}
};
};
} // namespace service
} // namespace llarp
#endif