2018-06-22 13:59:28 +00:00
|
|
|
#ifndef LLARP_ROUTING_MESSAGE_HPP
|
|
|
|
#define LLARP_ROUTING_MESSAGE_HPP
|
|
|
|
|
2019-05-24 02:01:36 +00:00
|
|
|
#include <constants/proto.hpp>
|
2019-01-11 01:19:36 +00:00
|
|
|
#include <path/path_types.hpp>
|
2019-11-03 15:31:01 +00:00
|
|
|
#include <util/bencode.hpp>
|
2019-02-02 23:12:42 +00:00
|
|
|
#include <util/buffer.hpp>
|
2018-06-22 13:59:28 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
2019-02-11 19:45:42 +00:00
|
|
|
struct AbstractRouter;
|
2018-06-22 13:59:28 +00:00
|
|
|
namespace routing
|
|
|
|
{
|
|
|
|
struct IMessageHandler;
|
|
|
|
|
2019-05-24 02:01:36 +00:00
|
|
|
struct IMessage
|
2018-06-22 13:59:28 +00:00
|
|
|
{
|
2019-02-11 19:45:42 +00:00
|
|
|
PathID_t from;
|
2019-07-30 23:42:13 +00:00
|
|
|
uint64_t S{0};
|
2019-05-24 02:01:36 +00:00
|
|
|
uint64_t version = LLARP_PROTO_VERSION;
|
2018-09-17 15:32:37 +00:00
|
|
|
|
2019-07-30 23:42:13 +00:00
|
|
|
IMessage() = default;
|
2018-09-17 15:32:37 +00:00
|
|
|
|
2019-07-30 23:42:13 +00:00
|
|
|
virtual ~IMessage() = default;
|
2018-09-17 15:32:37 +00:00
|
|
|
|
2019-05-24 02:01:36 +00:00
|
|
|
virtual bool
|
|
|
|
BEncode(llarp_buffer_t* buf) const = 0;
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* buf) = 0;
|
|
|
|
|
2018-06-22 13:59:28 +00:00
|
|
|
virtual bool
|
2019-02-11 19:45:42 +00:00
|
|
|
HandleMessage(IMessageHandler* h, AbstractRouter* r) const = 0;
|
2018-06-22 13:59:28 +00:00
|
|
|
|
2019-01-02 01:04:04 +00:00
|
|
|
virtual void
|
2018-12-27 14:32:37 +00:00
|
|
|
Clear() = 0;
|
2018-06-22 13:59:28 +00:00
|
|
|
};
|
2018-12-27 14:32:37 +00:00
|
|
|
|
2018-06-22 13:59:28 +00:00
|
|
|
} // namespace routing
|
|
|
|
} // namespace llarp
|
|
|
|
|
2018-09-17 15:32:37 +00:00
|
|
|
#endif
|