lokinet/llarp/dns/serialize.hpp

37 lines
750 B
C++
Raw Normal View History

#pragma once
#include <llarp/util/buffer.hpp>
2021-07-29 20:40:25 +00:00
#include <llarp/util/status.hpp>
2018-12-03 22:22:59 +00:00
#include <vector>
namespace llarp
{
namespace dns
{
/// base type for serializable dns entities
struct Serialize
{
virtual ~Serialize() = 0;
2018-12-07 13:38:37 +00:00
2018-12-03 22:22:59 +00:00
/// encode entity to buffer
virtual bool
Encode(llarp_buffer_t* buf) const = 0;
/// decode entity from buffer
virtual bool
Decode(llarp_buffer_t* buf) = 0;
2021-07-29 20:40:25 +00:00
/// convert this whatever into json
virtual util::StatusObject
ToJSON() const = 0;
2018-12-03 22:22:59 +00:00
};
bool
EncodeRData(llarp_buffer_t* buf, const std::vector<byte_t>& rdata);
2018-12-03 22:22:59 +00:00
bool
DecodeRData(llarp_buffer_t* buf, std::vector<byte_t>& rdata);
2018-12-03 22:22:59 +00:00
} // namespace dns
} // namespace llarp