mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-11 07:10:36 +00:00
46ad8d4058
- includes are now sorted in consistent, logical order; first step in an attempt to fix the tomfoolery (no relation to Tom) brought in by include-what-you-use - shuffled around some cmake linking to simplify dependency graph - superfluous files removed
64 lines
1.3 KiB
C++
64 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include "common.hpp"
|
|
|
|
#include <llarp/path/path_types.hpp>
|
|
#include <llarp/router_id.hpp>
|
|
#include <llarp/util/bencode.hpp>
|
|
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace link
|
|
{
|
|
struct Connection;
|
|
}
|
|
|
|
struct Router;
|
|
|
|
/// parsed link layer message
|
|
struct AbstractLinkMessage : private AbstractSerializable
|
|
{
|
|
std::shared_ptr<link::Connection> conn;
|
|
PathID_t pathid;
|
|
|
|
uint64_t version = llarp::constants::proto_version;
|
|
|
|
AbstractLinkMessage() = default;
|
|
|
|
virtual ~AbstractLinkMessage() = default;
|
|
|
|
std::string
|
|
bt_encode() const override = 0;
|
|
|
|
virtual bool
|
|
handle_message(Router* router) const = 0;
|
|
|
|
virtual bool
|
|
decode_key(const llarp_buffer_t& key, llarp_buffer_t* buf) = 0;
|
|
|
|
virtual void
|
|
clear() = 0;
|
|
|
|
// the name of this kind of message
|
|
virtual const char*
|
|
name() const = 0;
|
|
|
|
/// get message prority, higher value means more important
|
|
virtual uint16_t
|
|
priority() const
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
// methods we do not want to inherit onwards from AbstractSerializable
|
|
void
|
|
bt_encode(oxenc::bt_dict_producer&) const final
|
|
{
|
|
throw std::runtime_error{
|
|
"Error: Link messages should not encode directly to a bt list producer!"};
|
|
}
|
|
};
|
|
} // namespace llarp
|