mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
38 lines
690 B
C++
38 lines
690 B
C++
#pragma once
|
|
|
|
#include <llarp/util/aligned.hpp>
|
|
#include <llarp/net/net_int.hpp>
|
|
|
|
#include <llarp/net/net.hpp>
|
|
|
|
namespace llarp::service
|
|
{
|
|
struct ConvoTag final : AlignedBuffer<16>
|
|
{
|
|
using AlignedBuffer<16>::AlignedBuffer;
|
|
|
|
void
|
|
Randomize() override;
|
|
|
|
sockaddr_in6
|
|
ToV6() const;
|
|
|
|
void
|
|
FromV6(sockaddr_in6 saddr);
|
|
};
|
|
} // namespace llarp::service
|
|
|
|
namespace std
|
|
{
|
|
template <>
|
|
struct hash<llarp::service::ConvoTag>
|
|
{
|
|
size_t
|
|
operator()(const llarp::service::ConvoTag& tag) const
|
|
{
|
|
std::hash<std::string_view> h{};
|
|
return h(std::string_view{reinterpret_cast<const char*>(tag.data()), tag.size()});
|
|
}
|
|
};
|
|
} // namespace std
|