mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
36 lines
673 B
C++
36 lines
673 B
C++
#ifndef LLARP_DNS_SERIALIZE_HPP
|
|
#define LLARP_DNS_SERIALIZE_HPP
|
|
|
|
#include <util/buffer.hpp>
|
|
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace dns
|
|
{
|
|
/// base type for serializable dns entities
|
|
struct Serialize
|
|
{
|
|
virtual ~Serialize() = 0;
|
|
|
|
/// 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);
|
|
|
|
bool
|
|
DecodeRData(llarp_buffer_t* buf, std::vector< byte_t >& rdata);
|
|
|
|
} // namespace dns
|
|
} // namespace llarp
|
|
|
|
#endif
|