lokinet/llarp/dht/publishservicejob.hpp
Stephen Shelton 4c499fb076
Make format
2020-02-20 08:36:29 -07:00

53 lines
1.1 KiB
C++

#ifndef LLARP_DHT_PUBLISHSERVICEJOB
#define LLARP_DHT_PUBLISHSERVICEJOB
#include <dht/tx.hpp>
#include <dht/txowner.hpp>
#include <service/address.hpp>
#include <service/intro_set.hpp>
#include <set>
namespace llarp
{
namespace dht
{
struct PublishServiceJob : public TX< Key_t, service::EncryptedIntroSet >
{
bool relayed;
uint64_t relayOrder;
service::EncryptedIntroSet introset;
PublishServiceJob(const TXOwner &asker,
const service::EncryptedIntroSet &introset,
AbstractContext *ctx, bool relayed,
uint64_t relayOrder);
bool
Validate(const service::EncryptedIntroSet &introset) const override;
void
Start(const TXOwner &peer) override;
bool
GetNextPeer(Key_t &, const std::set< Key_t > &) override
{
return false;
}
void
DoNextRequest(const Key_t &) override
{
}
void
SendReply() override
{
// don't need this
}
};
} // namespace dht
} // namespace llarp
#endif