You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/include/llarp/dht/messages/findintro.hpp

50 lines
1.1 KiB
C++

#ifndef LLARP_DHT_MESSAGES_FIND_INTRO_HPP
#define LLARP_DHT_MESSAGES_FIND_INTRO_HPP
#include <llarp/dht/message.hpp>
#include <llarp/service/address.hpp>
#include <llarp/service/tag.hpp>
namespace llarp
{
namespace dht
{
struct FindIntroMessage : public IMessage
{
6 years ago
uint64_t R = 0;
bool iterative = false;
llarp::service::Address S;
llarp::service::Tag N;
uint64_t T = 0;
FindIntroMessage(const Key_t& from) : IMessage(from)
{
}
virtual ~FindIntroMessage();
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;
};
struct RelayedFindIntroMessage : public FindIntroMessage
{
RelayedFindIntroMessage() : FindIntroMessage({})
{
}
~RelayedFindIntroMessage();
bool
HandleMessage(llarp_dht_context* ctx,
std::vector< IMessage* >& replies) const;
};
6 years ago
} // namespace dht
} // namespace llarp
#endif