2018-06-22 13:59:28 +00:00
|
|
|
#ifndef LLARP_ROUTING_MESSAGE_HPP
|
|
|
|
#define LLARP_ROUTING_MESSAGE_HPP
|
|
|
|
|
|
|
|
#include <llarp/buffer.h>
|
|
|
|
#include <llarp/router.h>
|
2018-06-23 00:00:44 +00:00
|
|
|
#include <llarp/bencode.hpp>
|
2018-06-22 13:59:28 +00:00
|
|
|
#include <llarp/path_types.hpp>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace routing
|
|
|
|
{
|
|
|
|
struct IMessageHandler;
|
|
|
|
|
2018-06-23 00:00:44 +00:00
|
|
|
struct IMessage : public llarp::IBEncodeMessage
|
2018-06-22 13:59:28 +00:00
|
|
|
{
|
|
|
|
llarp::PathID_t from;
|
|
|
|
|
|
|
|
virtual bool
|
2018-06-26 16:23:43 +00:00
|
|
|
HandleMessage(IMessageHandler* h, llarp_router* r) const = 0;
|
2018-06-22 13:59:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct InboundMessageParser
|
|
|
|
{
|
2018-07-11 16:11:19 +00:00
|
|
|
llarp::PathID_t from;
|
2018-06-22 13:59:28 +00:00
|
|
|
InboundMessageParser();
|
|
|
|
bool
|
2018-06-26 16:23:43 +00:00
|
|
|
ParseMessageBuffer(llarp_buffer_t buf, IMessageHandler* handler,
|
|
|
|
llarp_router* r);
|
2018-06-22 13:59:28 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static bool
|
|
|
|
OnKey(dict_reader* r, llarp_buffer_t* key);
|
|
|
|
bool firstKey;
|
|
|
|
dict_reader reader;
|
|
|
|
IMessage* msg;
|
|
|
|
};
|
|
|
|
} // namespace routing
|
|
|
|
} // namespace llarp
|
|
|
|
|
|
|
|
#endif
|