mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
17 lines
278 B
C++
17 lines
278 B
C++
|
|
#ifndef LLARP_SERVICE_VANITY_HPP
|
|
#define LLARP_SERVICE_VANITY_HPP
|
|
|
|
#include <util/aligned.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace service
|
|
{
|
|
/// hidden service address
|
|
|
|
using VanityNonce = llarp::AlignedBuffer< 16 >;
|
|
} // namespace service
|
|
} // namespace llarp
|
|
#endif
|