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

85 lines
1.8 KiB
C++
Raw Normal View History

#ifndef LLARP_SERVICE_CONTEXT_HPP
#define LLARP_SERVICE_CONTEXT_HPP
2018-12-12 03:15:08 +01:00
2018-12-12 02:12:59 +01:00
#include <handlers/tun.hpp>
#include <net.hpp>
2018-12-12 03:15:08 +01:00
#include <service/config.hpp>
#include <service/endpoint.hpp>
2018-12-12 02:12:59 +01:00
#include <unordered_map>
namespace llarp
{
namespace service
{
/// holds all the hidden service endpoints we own
struct Context
{
Context(llarp::Router *r);
~Context();
void
Tick(llarp_time_t now);
bool
hasEndpoints();
2018-09-22 12:23:23 +02:00
/// DRY refactor
llarp::service::Endpoint *
getFirstEndpoint();
2018-10-23 23:28:01 +02:00
bool
FindBestAddressFor(const byte_t *addr, bool isSNode, huint32_t &);
/// 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);
bool
MapAddressAll(const llarp::service::Address &addr,
llarp::Addr &localPrivateIpAddr);
bool
2018-11-26 14:29:45 +01:00
AddDefaultEndpoint(
const std::unordered_multimap< std::string, std::string > &opts);
bool
2018-11-11 14:14:19 +01:00
AddEndpoint(const Config::section_t &conf, bool autostart = false);
bool
StartAll();
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