You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/dns/serialize.hpp

35 lines
683 B
C++

#pragma once
#include <llarp/util/buffer.hpp>
#include <llarp/util/status.hpp>
6 years ago
#include <vector>
12 months ago
namespace llarp::dns
6 years ago
{
12 months ago
/// base type for serializable dns entities
struct Serialize
6 years ago
{
12 months ago
virtual ~Serialize() = 0;
12 months ago
/// encode entity to buffer
virtual bool
Encode(llarp_buffer_t* buf) const = 0;
6 years ago
12 months ago
/// decode entity from buffer
virtual bool
Decode(llarp_buffer_t* buf) = 0;
12 months ago
/// convert this whatever into json
virtual util::StatusObject
ToJSON() const = 0;
};
6 years ago
12 months ago
bool
EncodeRData(llarp_buffer_t* buf, const std::vector<byte_t>& rdata);
6 years ago
12 months ago
bool
DecodeRData(llarp_buffer_t* buf, std::vector<byte_t>& rdata);
6 years ago
12 months ago
} // namespace llarp::dns