mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
1697bf90fe
Compiles with C++17, replaces ghc::filesystem with std::filesystem, nonstd::optional with std::optional, and llarp::string_view with std::string_view.
52 lines
1.1 KiB
C++
52 lines
1.1 KiB
C++
#ifndef LLARP_LINK_FACTORY_HPP
|
|
#define LLARP_LINK_FACTORY_HPP
|
|
#include <config/key_manager.hpp>
|
|
#include <string_view>
|
|
#include <functional>
|
|
#include <memory>
|
|
|
|
#include <link/server.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
/// LinkFactory is responsible for returning std::functions that create the
|
|
/// link layer types
|
|
struct LinkFactory
|
|
{
|
|
enum class LinkType
|
|
{
|
|
eLinkUTP,
|
|
eLinkIWP,
|
|
eLinkMempipe,
|
|
eLinkUnknown
|
|
};
|
|
|
|
using Factory = std::function<LinkLayer_ptr(
|
|
std::shared_ptr<KeyManager>,
|
|
GetRCFunc,
|
|
LinkMessageHandler,
|
|
SignBufferFunc,
|
|
SessionEstablishedHandler,
|
|
SessionRenegotiateHandler,
|
|
TimeoutHandler,
|
|
SessionClosedHandler,
|
|
PumpDoneHandler)>;
|
|
|
|
/// get link type by name string
|
|
/// if invalid returns eLinkUnspec
|
|
static LinkType
|
|
TypeFromName(std::string_view name);
|
|
|
|
/// turns a link type into a string representation
|
|
static std::string
|
|
NameFromType(LinkType t);
|
|
|
|
/// obtain a link factory of a certain type
|
|
static Factory
|
|
Obtain(LinkType t, bool permitInbound);
|
|
};
|
|
|
|
} // namespace llarp
|
|
|
|
#endif
|