You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/routing/message.hpp

37 lines
639 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 AbstractRouter;
namespace routing
{
struct IMessageHandler;
struct IMessage : public llarp::IBEncodeMessage
{
PathID_t from;
uint64_t S;
IMessage() : llarp::IBEncodeMessage(), S(0)
{
}
virtual ~IMessage(){};
virtual bool
HandleMessage(IMessageHandler* h, AbstractRouter* r) const = 0;
virtual void
Clear() = 0;
};
} // namespace routing
} // namespace llarp
#endif