mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
60 lines
1.6 KiB
C++
60 lines
1.6 KiB
C++
#ifndef LLARP_SERVICE_HANDLER_HPP
|
|
#define LLARP_SERVICE_HANDLER_HPP
|
|
|
|
#include <crypto/types.hpp>
|
|
#include <path/path_types.hpp>
|
|
#include <service/IntroSet.hpp>
|
|
#include <util/aligned.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace service
|
|
{
|
|
using ConvoTag = llarp::AlignedBuffer< 16 >;
|
|
|
|
struct ProtocolMessage;
|
|
struct IDataHandler
|
|
{
|
|
virtual bool
|
|
HandleDataMessage(const PathID_t&, ProtocolMessage* msg) = 0;
|
|
|
|
virtual bool
|
|
GetCachedSessionKeyFor(const ConvoTag& remote,
|
|
SharedSecret& secret) const = 0;
|
|
virtual void
|
|
PutCachedSessionKeyFor(const ConvoTag& remote,
|
|
const SharedSecret& secret) = 0;
|
|
|
|
virtual void
|
|
RemoveConvoTag(const ConvoTag& remote) = 0;
|
|
|
|
virtual bool
|
|
HasConvoTag(const ConvoTag& remote) const = 0;
|
|
|
|
virtual void
|
|
PutSenderFor(const ConvoTag& remote, const ServiceInfo& si) = 0;
|
|
|
|
virtual bool
|
|
GetSenderFor(const ConvoTag& remote, ServiceInfo& si) const = 0;
|
|
|
|
virtual void
|
|
PutIntroFor(const ConvoTag& remote, const Introduction& intro) = 0;
|
|
|
|
virtual bool
|
|
GetIntroFor(const ConvoTag& remote, Introduction& intro) const = 0;
|
|
|
|
virtual void
|
|
PutReplyIntroFor(const ConvoTag& remote, const Introduction& intro) = 0;
|
|
|
|
virtual bool
|
|
GetReplyIntroFor(const ConvoTag& remote, Introduction& intro) const = 0;
|
|
|
|
virtual bool
|
|
GetConvoTagsForService(const ServiceInfo& si,
|
|
std::set< ConvoTag >& tag) const = 0;
|
|
};
|
|
} // namespace service
|
|
} // namespace llarp
|
|
|
|
#endif
|