lokinet/llarp/dns/serialize.hpp

36 lines
669 B
C++
Raw Normal View History

2018-12-03 22:22:59 +00:00
#ifndef LLARP_DNS_SERIALIZE_HPP
#define LLARP_DNS_SERIALIZE_HPP
2019-02-02 23:12:42 +00:00
#include <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
#endif