1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/dns/serialize.hpp

36 lines
669 B
C++
Raw Normal View History

2018-12-03 23:22:59 +01:00
#ifndef LLARP_DNS_SERIALIZE_HPP
#define LLARP_DNS_SERIALIZE_HPP
2019-02-03 00:12:42 +01:00
#include <util/buffer.hpp>
2018-12-03 23:22:59 +01:00
#include <vector>
namespace llarp
{
namespace dns
{
/// base type for serializable dns entities
struct Serialize
{
virtual ~Serialize() = 0;
2018-12-07 14:38:37 +01:00
2018-12-03 23:22:59 +01: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 23:22:59 +01:00
bool
DecodeRData(llarp_buffer_t* buf, std::vector<byte_t>& rdata);
2018-12-03 23:22:59 +01:00
} // namespace dns
} // namespace llarp
#endif