1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/dns/name.hpp
2019-04-26 08:14:29 -04:00

29 lines
532 B
C++

#ifndef LLARP_DNS_NAME_HPP
#define LLARP_DNS_NAME_HPP
#include <net/net_int.hpp>
#include <util/buffer.hpp>
#include <string>
namespace llarp
{
namespace dns
{
using Name_t = std::string;
/// decode name from buffer
bool
DecodeName(llarp_buffer_t* buf, Name_t& name, bool trimTrailingDot = false);
/// encode name to buffer
bool
EncodeName(llarp_buffer_t* buf, const Name_t& name);
bool
DecodePTR(const Name_t& name, huint32_t& ip);
} // namespace dns
} // namespace llarp
#endif