mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
40 lines
842 B
C++
40 lines
842 B
C++
#ifndef LLARP_ROUTING_MESSAGE_HPP
|
|
#define LLARP_ROUTING_MESSAGE_HPP
|
|
|
|
#include <llarp/buffer.h>
|
|
#include <llarp/router.h>
|
|
#include <llarp/bencode.hpp>
|
|
#include <llarp/path_types.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace routing
|
|
{
|
|
struct IMessageHandler;
|
|
|
|
struct IMessage : public llarp::IBEncodeMessage
|
|
{
|
|
llarp::PathID_t from;
|
|
|
|
virtual bool
|
|
HandleMessage(IMessageHandler* h, llarp_router* r) const = 0;
|
|
};
|
|
|
|
struct InboundMessageParser
|
|
{
|
|
InboundMessageParser();
|
|
bool
|
|
ParseMessageBuffer(llarp_buffer_t buf, IMessageHandler* handler,
|
|
llarp_router* r);
|
|
|
|
private:
|
|
static bool
|
|
OnKey(dict_reader* r, llarp_buffer_t* key);
|
|
bool firstKey;
|
|
dict_reader reader;
|
|
IMessage* msg;
|
|
};
|
|
} // namespace routing
|
|
} // namespace llarp
|
|
|
|
#endif |