lokinet/include/llarp/service/context.hpp

92 lines
2.1 KiB
C++
Raw Normal View History

#ifndef LLARP_SERVICE_CONTEXT_HPP
#define LLARP_SERVICE_CONTEXT_HPP
#include <llarp/router.h>
2018-10-10 15:14:45 +00:00
#include <llarp/net.hpp>
#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(llarp_time_t now);
bool
hasEndpoints();
2018-09-22 10:23:23 +00:00
/// DRY refactor
llarp::service::Endpoint *
getFirstEndpoint();
2018-10-23 21:28:01 +00:00
bool
FindBestAddressFor(const llarp::service::Address &, 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-11-03 13:19:18 +00:00
huint32_t
GetIpForAddr(const llarp::service::Address &addr);
2018-09-21 12:53:20 +00:00
/// hint at possible path usage and trigger building early
bool
Prefetch(const llarp::service::Address &addr);
2018-09-20 10:05:42 +00:00
/// punch a hole open for DNS to add mappings
/// ip is in network order
2018-09-20 10:05:42 +00:00
bool
2018-10-10 15:14:45 +00:00
MapAddress(const llarp::service::Address &addr, huint32_t ip);
2018-09-20 10:05:42 +00:00
bool
MapAddressAll(const llarp::service::Address &addr,
llarp::Addr &localPrivateIpAddr);
bool
2018-11-18 16:57:24 +00:00
AddDefaultEndpoint(
const std::unordered_multimap< std::string, std::string > &conf);
bool
2018-11-11 13:14:19 +00: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 04:37:50 +00:00
} // namespace service
} // namespace llarp
#endif