llarp/service/convotag.hpp
Namespaces
| Name |
|---|
| llarp [crypto.hpp] |
| llarp::service |
| std STL namespace. |
Classes
| Name | |
|---|---|
| struct | llarp::service::ConvoTag |
| struct | std::hash< llarp::service::ConvoTag > |
Source code
#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
Updated on 2026-01-10 at 22:49:45 +0000