mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-11 07:10:36 +00:00
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
#ifndef LLARP_EXIT_CONTEXT_HPP
|
|
#define LLARP_EXIT_CONTEXT_HPP
|
|
#include <exit/policy.hpp>
|
|
#include <handlers/exit.hpp>
|
|
|
|
#include <string>
|
|
#include <unordered_map>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace exit
|
|
{
|
|
/// owner of all the exit endpoints
|
|
struct Context
|
|
{
|
|
using Config_t = std::unordered_multimap< std::string, std::string >;
|
|
|
|
Context(llarp::Router *r);
|
|
~Context();
|
|
|
|
void
|
|
Tick(llarp_time_t now);
|
|
|
|
void
|
|
ClearAllEndpoints();
|
|
|
|
bool
|
|
AddExitEndpoint(const std::string &name, const Config_t &config);
|
|
|
|
bool
|
|
ObtainNewExit(const llarp::PubKey &remote, const llarp::PathID_t &path,
|
|
bool permitInternet);
|
|
|
|
llarp::exit::Endpoint *
|
|
FindEndpointForPath(const llarp::PathID_t &path) const;
|
|
|
|
/// calculate (pk, tx, rx) for all exit traffic
|
|
using TrafficStats =
|
|
std::unordered_map< PubKey, std::pair< uint64_t, uint64_t >,
|
|
PubKey::Hash >;
|
|
|
|
void
|
|
CalculateExitTraffic(TrafficStats &stats);
|
|
|
|
private:
|
|
llarp::Router *m_Router;
|
|
std::unordered_map< std::string,
|
|
std::unique_ptr< llarp::handlers::ExitEndpoint > >
|
|
m_Exits;
|
|
};
|
|
} // namespace exit
|
|
} // namespace llarp
|
|
|
|
#endif
|