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/messages/link_message.hpp

54 lines
978 B
C++

#ifndef LLARP_LINK_MESSAGE_HPP
#define LLARP_LINK_MESSAGE_HPP
#include <link/session.hpp>
#include <router_id.hpp>
#include <util/bencode.hpp>
#include <vector>
namespace llarp
{
struct ILinkSession;
struct AbstractRouter;
/// parsed link layer message
struct ILinkMessage
{
/// who did this message come from or is going to
ILinkSession* session = nullptr;
uint64_t version = LLARP_PROTO_VERSION;
ILinkMessage() = default;
virtual ~ILinkMessage()
{
}
virtual bool
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* val) = 0;
bool
BDecode(llarp_buffer_t* buf)
{
return bencode_decode_dict(*this, buf);
}
virtual bool
BEncode(llarp_buffer_t* buf) const = 0;
virtual bool
HandleMessage(AbstractRouter* router) const = 0;
virtual void
Clear() = 0;
// the name of this kind of message
virtual const char*
Name() const = 0;
};
} // namespace llarp
#endif