mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-13 01:10:24 +00:00
37 lines
637 B
C++
37 lines
637 B
C++
#ifndef LLARP_ROUTING_MESSAGE_HPP
|
|
#define LLARP_ROUTING_MESSAGE_HPP
|
|
|
|
#include <path/path_types.hpp>
|
|
#include <util/bencode.hpp>
|
|
#include <util/buffer.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
struct Router;
|
|
namespace routing
|
|
{
|
|
struct IMessageHandler;
|
|
|
|
struct IMessage : public llarp::IBEncodeMessage
|
|
{
|
|
llarp::PathID_t from;
|
|
uint64_t S;
|
|
|
|
IMessage() : llarp::IBEncodeMessage(), S(0)
|
|
{
|
|
}
|
|
|
|
virtual ~IMessage(){};
|
|
|
|
virtual bool
|
|
HandleMessage(IMessageHandler* h, llarp::Router* r) const = 0;
|
|
|
|
virtual void
|
|
Clear() = 0;
|
|
};
|
|
|
|
} // namespace routing
|
|
} // namespace llarp
|
|
|
|
#endif
|