2018-07-11 13:20:14 +00:00
|
|
|
#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>
|
2018-12-12 02:15:08 +00:00
|
|
|
#include <service/IntroSet.hpp>
|
|
|
|
|
2018-07-20 04:50:28 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2018-07-11 13:20:14 +00:00
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace dht
|
|
|
|
{
|
2018-11-05 11:27:12 +00:00
|
|
|
struct PublishIntroMessage final : public IMessage
|
2018-07-11 13:20:14 +00:00
|
|
|
{
|
|
|
|
llarp::service::IntroSet I;
|
2018-07-20 04:50:28 +00:00
|
|
|
std::vector< Key_t > E;
|
2018-07-11 13:20:14 +00:00
|
|
|
uint64_t R = 0;
|
|
|
|
uint64_t S = 0;
|
|
|
|
uint64_t txID = 0;
|
|
|
|
bool hasS = false;
|
|
|
|
PublishIntroMessage() : IMessage({})
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-07-18 22:50:16 +00:00
|
|
|
PublishIntroMessage(const llarp::service::IntroSet& i, uint64_t tx,
|
2018-07-20 04:50:28 +00:00
|
|
|
uint64_t s, const std::vector< Key_t >& exclude = {})
|
2018-07-19 04:58:39 +00:00
|
|
|
: IMessage({}), E(exclude), txID(tx)
|
2018-07-11 16:11:19 +00:00
|
|
|
{
|
|
|
|
I = i;
|
2018-07-18 22:50:05 +00:00
|
|
|
S = s;
|
2018-07-11 16:11:19 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 13:20:14 +00:00
|
|
|
~PublishIntroMessage();
|
|
|
|
|
|
|
|
bool
|
2018-11-05 11:27:12 +00:00
|
|
|
BEncode(llarp_buffer_t* buf) const override;
|
2018-07-11 13:20:14 +00:00
|
|
|
|
|
|
|
bool
|
2018-11-05 11:27:12 +00:00
|
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t* val) override;
|
2018-07-11 13:20:14 +00:00
|
|
|
|
|
|
|
virtual bool
|
2018-11-05 11:27:12 +00:00
|
|
|
HandleMessage(
|
|
|
|
llarp_dht_context* ctx,
|
|
|
|
std::vector< std::unique_ptr< IMessage > >& replies) const override;
|
2018-07-11 13:20:14 +00:00
|
|
|
};
|
2018-07-17 04:37:50 +00:00
|
|
|
} // namespace dht
|
|
|
|
} // namespace llarp
|
2018-09-02 18:25:42 +00:00
|
|
|
#endif
|