mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
273270916e
This commit reflects changes to clang-format rules. Unfortunately, these rule changes create a massive change to the codebase, which causes an apparent rewrite of git history. Git blame's --ignore-rev flag can be used to ignore this commit when attempting to `git blame` some code.
52 lines
999 B
C++
52 lines
999 B
C++
#ifndef LLARP_LINK_MESSAGE_PARSER_HPP
|
|
#define LLARP_LINK_MESSAGE_PARSER_HPP
|
|
|
|
#include <router_id.hpp>
|
|
#include <util/bencode.h>
|
|
|
|
#include <memory>
|
|
|
|
namespace llarp
|
|
{
|
|
struct AbstractRouter;
|
|
struct ILinkMessage;
|
|
struct ILinkSession;
|
|
|
|
struct LinkMessageParser
|
|
{
|
|
LinkMessageParser(AbstractRouter* router);
|
|
~LinkMessageParser();
|
|
|
|
bool
|
|
operator()(llarp_buffer_t* buffer, llarp_buffer_t* key);
|
|
|
|
/// start processig message from a link session
|
|
bool
|
|
ProcessFrom(ILinkSession* from, const llarp_buffer_t& buf);
|
|
|
|
/// called when the message is fully read
|
|
/// return true when the message was accepted otherwise returns false
|
|
bool
|
|
MessageDone();
|
|
|
|
/// resets internal state
|
|
void
|
|
Reset();
|
|
|
|
private:
|
|
RouterID
|
|
GetCurrentFrom();
|
|
|
|
private:
|
|
bool firstkey;
|
|
AbstractRouter* router;
|
|
ILinkSession* from;
|
|
ILinkMessage* msg;
|
|
|
|
struct msg_holder_t;
|
|
|
|
std::unique_ptr<msg_holder_t> holder;
|
|
};
|
|
} // namespace llarp
|
|
#endif
|