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/router_id.hpp

64 lines
1.1 KiB
C++

#ifndef LLARP_ROUTER_ID_HPP
#define LLARP_ROUTER_ID_HPP
#include <util/aligned.hpp>
5 years ago
#include <util/status.hpp>
namespace llarp
{
struct RouterID : public AlignedBuffer< 32 >
{
static constexpr size_t SIZE = 32;
using Data = std::array< byte_t, SIZE >;
RouterID()
{
}
RouterID(const byte_t* buf) : AlignedBuffer< SIZE >(buf)
{
}
RouterID(const Data& data) : AlignedBuffer< SIZE >(data)
{
}
5 years ago
util::StatusObject
ExtractStatus() const;
5 years ago
std::string
ToString() const;
std::string
ShortString() const;
bool
FromString(const std::string& str);
RouterID&
operator=(const byte_t* ptr)
{
std::copy(ptr, ptr + SIZE, begin());
return *this;
}
friend std::ostream&
operator<<(std::ostream& out, const RouterID& id)
{
return out << id.ToString();
}
using Hash = AlignedBuffer< SIZE >::Hash;
};
inline bool
operator==(const RouterID& lhs, const RouterID& rhs)
{
return lhs.as_array() == rhs.as_array();
}
} // namespace llarp
#endif