1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/service/context.hpp
Jeff 60f4d96ba5
proper route poking (#1330)
* route poking:

* remove popen() call, replace with reading /proc/net/route for getting default route
* dynamically poke and unpoke routes on runtime

* swap intros and fix rpc endpoint for version to return what the ui expects

* use std::string::find_first_not_of instead of using a lambda
2020-09-01 17:22:22 -04:00

72 lines
1.7 KiB
C++

#ifndef LLARP_SERVICE_CONTEXT_HPP
#define LLARP_SERVICE_CONTEXT_HPP
#include <handlers/tun.hpp>
#include <net/net.hpp>
#include <config/config.hpp>
#include <service/endpoint.hpp>
#include <unordered_map>
namespace llarp
{
namespace service
{
/// holds all the hidden service endpoints we own
/// TODO: this should be refactored (removed entirely...?) now that lokinet
/// only supports one endpoint per instance
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();
/// function visitor returns false to prematurely break iteration
void
ForEachService(std::function<bool(const std::string&, const Endpoint_ptr&)> visit) const;
/// add endpoint via config
void
AddEndpoint(const Config& conf, bool autostart = false);
/// inject endpoint instance
void
InjectEndpoint(std::string name, std::shared_ptr<Endpoint> ep);
/// 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);
Endpoint_ptr
GetEndpointByName(const std::string& name) const;
Endpoint_ptr
GetDefault() const
{
return GetEndpointByName("default");
}
bool
StartAll();
private:
AbstractRouter* const 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