lokinet/llarp/routing/message.hpp

37 lines
639 B
C++
Raw Normal View History

#ifndef LLARP_ROUTING_MESSAGE_HPP
#define LLARP_ROUTING_MESSAGE_HPP
2019-01-11 01:19:36 +00:00
#include <path/path_types.hpp>
#include <util/bencode.hpp>
2019-02-02 23:12:42 +00:00
#include <util/buffer.hpp>
namespace llarp
{
struct AbstractRouter;
namespace routing
{
struct IMessageHandler;
2018-06-23 00:00:44 +00:00
struct IMessage : public llarp::IBEncodeMessage
{
PathID_t from;
uint64_t S;
2018-09-17 15:32:37 +00:00
IMessage() : llarp::IBEncodeMessage(), S(0)
2018-09-17 15:32:37 +00:00
{
}
2018-09-17 16:12:42 +00:00
virtual ~IMessage(){};
2018-09-17 15:32:37 +00:00
virtual bool
HandleMessage(IMessageHandler* h, AbstractRouter* r) const = 0;
virtual void
Clear() = 0;
};
} // namespace routing
} // namespace llarp
2018-09-17 15:32:37 +00:00
#endif