lokinet/llarp/dht/messages/pubintro.hpp

48 lines
1.1 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>
2018-12-12 02:15:08 +00:00
#include <service/IntroSet.hpp>
2018-07-20 04:50:28 +00:00
#include <vector>
namespace llarp
{
namespace dht
{
struct PublishIntroMessage final : public IMessage
{
llarp::service::IntroSet I;
2018-07-20 04:50:28 +00:00
std::vector< Key_t > E;
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)
{
I = i;
2018-07-18 22:50:05 +00:00
S = s;
}
~PublishIntroMessage();
bool
BEncode(llarp_buffer_t* buf) const override;
bool
DecodeKey(llarp_buffer_t key, llarp_buffer_t* val) override;
virtual 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