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

110 lines
2.3 KiB
C++

#ifndef LLARP_SERVICE_ADDRESS_HPP
#define LLARP_SERVICE_ADDRESS_HPP
#include <dht/key.hpp>
#include <router_id.hpp>
#include <util/aligned.hpp>
#include <functional>
#include <numeric>
#include <string>
5 years ago
#include <set>
namespace llarp
{
namespace service
{
6 years ago
/// Snapp/Snode Address
struct Address : public AlignedBuffer< 32 >
{
/// if parsed using FromString this contains the subdomain
/// this member is not used when comparing it's extra data for dns
std::string subdomain;
/// list of whitelisted gtld to permit
5 years ago
static const std::set< std::string > AllowedTLDs;
/// return true if we permit using this tld
/// otherwise return false
static bool
PermitTLD(const char* tld);
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
{
}
explicit Address(const Data& buf) : AlignedBuffer< SIZE >(buf)
{
}
Address(const Address& other)
: AlignedBuffer< SIZE >(other.as_array()), subdomain(other.subdomain)
{
}
explicit Address(const AlignedBuffer< SIZE >& other)
: AlignedBuffer< SIZE >(other)
{
}
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