You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/router.hpp

42 lines
811 B
C++

#ifndef LLARP_ROUTER_HPP
#define LLARP_ROUTER_HPP
#include <llarp/link.h>
#include <llarp/router.h>
#include <functional>
#include "mem.hpp"
namespace llarp {
struct router_links {
llarp_link *link = nullptr;
router_links *next = nullptr;
};
} // namespace llarp
struct llarp_router {
bool ready;
const char * transport_keyfile = "transport.key";
const char * transport_certfile = "transport.pem";
struct llarp_ev_loop * netloop;
struct llarp_threadpool *tp;
llarp::router_links links;
llarp_crypto crypto;
llarp_msg_muxer muxer;
llarp_path_context *paths;
llarp_alloc * mem;
llarp_router(llarp_alloc * mem);
~llarp_router();
void AddLink(struct llarp_link *link);
void ForEachLink(std::function<void(llarp_link *)> visitor);
void Close();
bool Ready();
};
#endif