lokinet/llarp/dht/messages/pubintro.hpp

48 lines
1.2 KiB
C++
Raw Normal View History

#ifndef LLARP_DHT_MESSAGES_PUB_INTRO_HPP
#define LLARP_DHT_MESSAGES_PUB_INTRO_HPP
2018-12-12 00:48:54 +00:00
#include <dht/message.hpp>
#include <service/intro_set.hpp>
2018-12-12 02:15:08 +00:00
2019-07-30 23:42:13 +00:00
#include <utility>
2018-07-20 04:50:28 +00:00
#include <vector>
namespace llarp
{
namespace dht
{
struct PublishIntroMessage final : public IMessage
{
static const uint64_t MaxPropagationDepth;
2020-01-27 21:30:41 +00:00
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)
{
}
2019-07-30 23:42:13 +00:00
~PublishIntroMessage() override;
bool
BEncode(llarp_buffer_t* buf) const override;
bool
2019-02-05 00:41:33 +00:00
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* val) override;
2019-07-30 23:42:13 +00:00
bool
HandleMessage(
llarp_dht_context* ctx, std::vector<std::unique_ptr<IMessage>>& replies) const override;
};
2018-07-17 04:37:50 +00:00
} // namespace dht
} // namespace llarp
#endif