mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
273270916e
This commit reflects changes to clang-format rules. Unfortunately, these rule changes create a massive change to the codebase, which causes an apparent rewrite of git history. Git blame's --ignore-rev flag can be used to ignore this commit when attempting to `git blame` some code.
54 lines
1.1 KiB
C++
54 lines
1.1 KiB
C++
#ifndef LLARP_DNS_RR_HPP
|
|
#define LLARP_DNS_RR_HPP
|
|
|
|
#include <dns/name.hpp>
|
|
#include <dns/serialize.hpp>
|
|
#include <net/net_int.hpp>
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
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;
|
|
|
|
struct ResourceRecord : public Serialize
|
|
{
|
|
ResourceRecord() = default;
|
|
ResourceRecord(const ResourceRecord& other);
|
|
ResourceRecord(ResourceRecord&& other);
|
|
|
|
bool
|
|
Encode(llarp_buffer_t* buf) const override;
|
|
|
|
bool
|
|
Decode(llarp_buffer_t* buf) override;
|
|
|
|
std::ostream&
|
|
print(std::ostream& stream, int level, int spaces) const;
|
|
|
|
bool
|
|
HasCNameForTLD(const std::string& tld) const;
|
|
|
|
Name_t rr_name;
|
|
RRType_t rr_type;
|
|
RRClass_t rr_class;
|
|
RR_TTL_t ttl;
|
|
RR_RData_t rData;
|
|
};
|
|
|
|
inline std::ostream&
|
|
operator<<(std::ostream& out, const ResourceRecord& rr)
|
|
{
|
|
return rr.print(out, -1, -1);
|
|
}
|
|
} // namespace dns
|
|
} // namespace llarp
|
|
|
|
#endif
|