mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
17 lines
278 B
C++
17 lines
278 B
C++
#ifndef LLARP_SERVICE_ADDRESS_HPP
|
|
#define LLARP_SERVICE_ADDRESS_HPP
|
|
#include <llarp/aligned.hpp>
|
|
#include <string>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace service
|
|
{
|
|
typedef llarp::AlignedBuffer< 32 > Address;
|
|
|
|
std::string
|
|
AddressToString(const Address& addr);
|
|
}
|
|
}
|
|
|
|
#endif |