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

41 lines
786 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 {
struct llarp_threadpool *tp;
llarp::router_links links;
llarp_crypto crypto;
llarp_msg_muxer muxer;
llarp_path_context *paths;
static void *operator new(size_t sz) {
return llarp_g_mem.alloc(sz, llarp::alignment<llarp_router>());
}
static void operator delete(void *ptr) { llarp_g_mem.free(ptr); }
llarp_router();
~llarp_router();
void AddLink(struct llarp_link *link);
void ForEachLink(std::function<void(llarp_link *)> visitor);
void Close();
};
#endif