1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/include/llarp/service/context.hpp

81 lines
1.8 KiB
C++
Raw Normal View History

#ifndef LLARP_SERVICE_CONTEXT_HPP
#define LLARP_SERVICE_CONTEXT_HPP
#include <llarp/router.h>
#include <llarp/service/config.hpp>
#include <llarp/service/endpoint.hpp>
#include <unordered_map>
#include <llarp/handlers/tun.hpp>
namespace llarp
{
namespace service
{
/// holds all the hidden service endpoints we own
struct Context
{
Context(llarp_router *r);
~Context();
void
Tick();
bool
hasEndpoints();
2018-09-22 12:23:23 +02:00
/// DRY refactor
llarp::service::Endpoint *
getFirstEndpoint();
/// DRY refactor
llarp::handlers::TunEndpoint *
getFirstTun();
/// punch a hole to get ip range from first tun endpoint
llarp_tun_io *
getRange();
struct mapAddressAll_context
{
llarp::service::Address serviceAddr;
llarp::Addr localPrivateIpAddr;
};
struct endpoint_iter
{
void *user;
llarp::service::Endpoint *endpoint;
size_t index;
bool (*visit)(struct endpoint_iter *);
};
bool
iterate(struct endpoint_iter &i);
2018-09-21 14:53:20 +02:00
/// hint at possible path usage and trigger building early
bool
Prefetch(const llarp::service::Address &addr);
2018-09-20 12:05:42 +02:00
/// punch a hole open for DNS to add mappings
/// ip is in network order
2018-09-20 12:05:42 +02:00
bool
MapAddress(const llarp::service::Address &addr, uint32_t ip);
bool
MapAddressAll(const llarp::service::Address &addr,
llarp::Addr &localPrivateIpAddr);
bool
AddDefaultEndpoint(const std::string &ifaddr, const std::string &ifname);
bool
AddEndpoint(const Config::section_t &conf);
private:
llarp_router *m_Router;
std::unordered_map< std::string, std::unique_ptr< Endpoint > >
m_Endpoints;
};
2018-07-17 06:37:50 +02:00
} // namespace service
} // namespace llarp
#endif