mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
36 lines
539 B
C++
36 lines
539 B
C++
#ifndef LLARP_ESTABLISH_JOB_HPP
|
|
#define LLARP_ESTABLISH_JOB_HPP
|
|
|
|
#include <router_contact.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
struct OutboundLinkEstablishJob
|
|
{
|
|
RouterContact rc;
|
|
|
|
OutboundLinkEstablishJob(const RouterContact& remote) : rc(remote)
|
|
{
|
|
}
|
|
|
|
virtual ~OutboundLinkEstablishJob(){};
|
|
|
|
virtual void
|
|
Success() = 0;
|
|
|
|
virtual void
|
|
Failed() = 0;
|
|
|
|
virtual void
|
|
AttemptTimedout() = 0;
|
|
|
|
virtual void
|
|
Attempt() = 0;
|
|
|
|
virtual bool
|
|
ShouldRetry() const = 0;
|
|
};
|
|
} // namespace llarp
|
|
|
|
#endif
|