1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/dns/rr.hpp

53 lines
1.1 KiB
C++
Raw Normal View History

#pragma once
#include "name.hpp"
#include "serialize.hpp"
#include <llarp/net/net_int.hpp>
2018-12-12 01:58:08 +01:00
2018-12-03 23:22:59 +01:00
#include <memory>
2018-12-12 01:58:08 +01:00
#include <vector>
2018-12-03 23:22:59 +01:00
namespace llarp
{
namespace dns
{
using RRClass_t = uint16_t;
using RRType_t = uint16_t;
using RR_RData_t = std::vector<byte_t>;
using RR_TTL_t = uint32_t;
2018-12-03 23:22:59 +01:00
struct ResourceRecord : public Serialize
{
2018-12-04 17:16:43 +01:00
ResourceRecord() = default;
ResourceRecord(const ResourceRecord& other);
ResourceRecord(ResourceRecord&& other);
explicit ResourceRecord(std::string name, RRType_t type, RR_RData_t rdata);
2021-07-29 22:40:25 +02:00
2018-12-03 23:22:59 +01:00
bool
Encode(llarp_buffer_t* buf) const override;
bool
Decode(llarp_buffer_t* buf) override;
2021-07-29 22:40:25 +02:00
util::StatusObject
ToJSON() const override;
std::string
ToString() const;
2018-12-04 17:16:43 +01:00
bool
HasCNameForTLD(const std::string& tld) const;
std::string rr_name;
2018-12-03 23:22:59 +01:00
RRType_t rr_type;
RRClass_t rr_class;
RR_TTL_t ttl;
RR_RData_t rData;
};
} // namespace dns
} // namespace llarp
template <>
constexpr inline bool llarp::IsToStringFormattable<llarp::dns::ResourceRecord> = true;