lokinet/include/llarp/dht/messages/pubintro.hpp

43 lines
1.0 KiB
C++
Raw Normal View History

#ifndef LLARP_DHT_MESSAGES_PUB_INTRO_HPP
#define LLARP_DHT_MESSAGES_PUB_INTRO_HPP
#include <llarp/dht/message.hpp>
#include <llarp/service/IntroSet.hpp>
namespace llarp
{
namespace dht
{
struct PublishIntroMessage : public IMessage
{
llarp::service::IntroSet I;
2018-07-19 04:58:39 +00:00
std::set< 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-19 04:58:39 +00:00
uint64_t s, const std::set< Key_t >& exclude = {})
: 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;
bool
DecodeKey(llarp_buffer_t key, llarp_buffer_t* val);
virtual bool
HandleMessage(llarp_dht_context* ctx,
std::vector< IMessage* >& replies) const;
};
2018-07-17 04:37:50 +00:00
} // namespace dht
} // namespace llarp
#endif