mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
7caa87862e
All #ifndef guards on headers have been removed, I think, in favor of #pragma once Headers are now included as `#include "filename"` if the included file resides in the same directory as the file including it, or any subdirectory therein. Otherwise they are included as `#include <project/top/dir/relative/path/filename>` The above does not include system/os headers.
71 lines
1.7 KiB
C++
71 lines
1.7 KiB
C++
#pragma once
|
|
|
|
#include <llarp/handlers/tun.hpp>
|
|
#include <llarp/net/net.hpp>
|
|
#include <llarp/config/config.hpp>
|
|
#include "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
|