mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
70 lines
1.6 KiB
C++
70 lines
1.6 KiB
C++
#ifndef LLARP_SERVICE_CONTEXT_HPP
|
|
#define LLARP_SERVICE_CONTEXT_HPP
|
|
|
|
#include <handlers/tun.hpp>
|
|
#include <net/net.hpp>
|
|
#include <service/config.hpp>
|
|
#include <service/endpoint.hpp>
|
|
|
|
#include <unordered_map>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace service
|
|
{
|
|
/// holds all the hidden service endpoints we own
|
|
struct Context
|
|
{
|
|
explicit Context(AbstractRouter *r);
|
|
~Context();
|
|
|
|
void
|
|
Tick(llarp_time_t now);
|
|
|
|
/// stop all held services
|
|
bool
|
|
StopAll();
|
|
|
|
util::StatusObject
|
|
ExtractStatus() const;
|
|
|
|
bool
|
|
hasEndpoints();
|
|
|
|
bool
|
|
FindBestAddressFor(const AlignedBuffer< 32 > &addr, bool isSNode,
|
|
huint32_t &);
|
|
|
|
/// function visitor returns false to prematurely break iteration
|
|
void
|
|
ForEachService(
|
|
std::function< bool(const std::string &, const Endpoint_ptr &) >
|
|
visit) const;
|
|
|
|
/// add default endpoint with options
|
|
bool
|
|
AddDefaultEndpoint(
|
|
const std::unordered_multimap< std::string, std::string > &opts);
|
|
|
|
/// add endpoint via config
|
|
bool
|
|
AddEndpoint(const Config::section_t &conf, bool autostart = false);
|
|
|
|
/// stop and remove an endpoint by name
|
|
/// return false if we don't have the hidden service with that name
|
|
bool
|
|
RemoveEndpoint(const std::string &name);
|
|
|
|
bool
|
|
StartAll();
|
|
|
|
private:
|
|
AbstractRouter *m_Router;
|
|
std::unordered_map< std::string, std::shared_ptr< Endpoint > >
|
|
m_Endpoints;
|
|
std::list< std::shared_ptr< Endpoint > > m_Stopped;
|
|
};
|
|
} // namespace service
|
|
} // namespace llarp
|
|
#endif
|