mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
26 lines
417 B
C++
26 lines
417 B
C++
#ifndef LLARP_DNS_STRING_HPP
|
|
#define LLARP_DNS_STRING_HPP
|
|
|
|
#include <string>
|
|
|
|
struct llarp_buffer_t;
|
|
|
|
namespace llarp
|
|
{
|
|
namespace dns
|
|
{
|
|
using name_t = std::string;
|
|
|
|
/// decode name from buffer
|
|
bool
|
|
decode_name(llarp_buffer_t* buf, name_t& name);
|
|
|
|
/// encode name to buffer
|
|
bool
|
|
encode_name(llarp_buffer_t* buf, const name_t& name);
|
|
|
|
} // namespace dns
|
|
} // namespace llarp
|
|
|
|
#endif
|