lokinet/llarp/service/handler.hpp

85 lines
2.2 KiB
C++
Raw Normal View History

#pragma once
2018-12-12 03:15:08 +01:00
#include <llarp/crypto/types.hpp>
#include <llarp/path/path.hpp>
#include "intro_set.hpp"
#include "convotag.hpp"
2019-05-03 15:15:03 +02:00
#include <memory>
#include <set>
namespace llarp
{
namespace service
{
2019-11-29 00:08:02 +01:00
struct ProtocolMessage;
struct RecvDataEvent
{
path::Path_ptr fromPath;
PathID_t pathid;
std::shared_ptr<ProtocolMessage> msg;
2019-11-29 00:08:02 +01:00
};
2018-08-09 21:02:17 +02:00
struct ProtocolMessage;
struct IDataHandler
{
virtual bool
HandleDataMessage(
path::Path_ptr path, const PathID_t from, std::shared_ptr<ProtocolMessage> msg) = 0;
2018-08-09 21:02:17 +02:00
virtual bool
GetCachedSessionKeyFor(const ConvoTag& remote, SharedSecret& secret) const = 0;
2018-08-09 21:02:17 +02:00
virtual void
PutCachedSessionKeyFor(const ConvoTag& remote, const SharedSecret& secret) = 0;
2018-08-09 21:02:17 +02:00
/// called when we send data to remote on a convotag
2019-09-19 22:28:12 +02:00
virtual void
ConvoTagTX(const ConvoTag& tag) = 0;
/// called when we got data from remote on a convotag
virtual void
ConvoTagRX(const ConvoTag& tag) = 0;
2019-09-19 22:28:12 +02:00
2019-03-08 17:00:45 +01:00
virtual void
RemoveConvoTag(const ConvoTag& remote) = 0;
2019-03-08 18:00:13 +01:00
virtual bool
HasConvoTag(const ConvoTag& remote) const = 0;
2018-08-09 21:02:17 +02:00
virtual void
PutSenderFor(const ConvoTag& remote, const ServiceInfo& si, bool inbound) = 0;
2018-08-09 21:02:17 +02:00
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;
2018-08-09 21:02:17 +02:00
virtual bool
GetConvoTagsForService(const Address& si, std::set<ConvoTag>& tag) const = 0;
virtual bool
HasInboundConvo(const Address& addr) const = 0;
2019-11-29 00:08:02 +01:00
virtual bool
HasOutboundConvo(const Address& addr) const = 0;
2020-02-18 17:00:45 +01:00
/// do we want a session outbound to addr
virtual bool
WantsOutboundSession(const Address& addr) const = 0;
2019-11-29 00:08:02 +01:00
virtual void
QueueRecvData(RecvDataEvent ev) = 0;
};
} // namespace service
} // namespace llarp