mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
7caa87862e
All #ifndef guards on headers have been removed, I think, in favor of #pragma once Headers are now included as `#include "filename"` if the included file resides in the same directory as the file including it, or any subdirectory therein. Otherwise they are included as `#include <project/top/dir/relative/path/filename>` The above does not include system/os headers.
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
#pragma once
|
|
#include <llarp/dht/message.hpp>
|
|
#include <llarp/service/intro_set.hpp>
|
|
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace dht
|
|
{
|
|
struct PublishIntroMessage final : public IMessage
|
|
{
|
|
static const uint64_t MaxPropagationDepth;
|
|
llarp::service::EncryptedIntroSet introset;
|
|
bool relayed = false;
|
|
uint64_t relayOrder = 0;
|
|
uint64_t txID = 0;
|
|
PublishIntroMessage(const Key_t& from, bool relayed_) : IMessage(from), relayed(relayed_)
|
|
{}
|
|
|
|
PublishIntroMessage(
|
|
const llarp::service::EncryptedIntroSet& introset_,
|
|
uint64_t tx,
|
|
bool relayed_,
|
|
uint64_t relayOrder_)
|
|
: IMessage({}), introset(introset_), relayed(relayed_), relayOrder(relayOrder_), txID(tx)
|
|
{}
|
|
|
|
~PublishIntroMessage() override;
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const override;
|
|
|
|
bool
|
|
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* val) override;
|
|
|
|
bool
|
|
HandleMessage(
|
|
llarp_dht_context* ctx, std::vector<std::unique_ptr<IMessage>>& replies) const override;
|
|
};
|
|
} // namespace dht
|
|
} // namespace llarp
|