lokinet/llarp/dns/serialize.hpp

33 lines
616 B
C++
Raw Normal View History

#pragma once
#include <llarp/util/buffer.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;
};
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