mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
54 lines
1.2 KiB
C
54 lines
1.2 KiB
C
#ifndef LLARP_ROUTER_H_
|
|
#define LLARP_ROUTER_H_
|
|
#include <llarp/config.h>
|
|
#include <llarp/ev.h>
|
|
#include <llarp/link.h>
|
|
#include <llarp/logic.h>
|
|
#include <llarp/router_contact.h>
|
|
#include <llarp/threadpool.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct llarp_router;
|
|
|
|
bool
|
|
llarp_findOrCreateIdentity(struct llarp_crypto *crypto, const char *path,
|
|
byte_t *secretkey);
|
|
|
|
struct llarp_router *
|
|
llarp_init_router(struct llarp_threadpool *worker,
|
|
struct llarp_ev_loop *netloop, struct llarp_logic *logic);
|
|
void
|
|
llarp_free_router(struct llarp_router **router);
|
|
|
|
bool
|
|
llarp_router_try_connect(struct llarp_router *router, struct llarp_rc *remote);
|
|
|
|
bool
|
|
llarp_configure_router(struct llarp_router *router, struct llarp_config *conf);
|
|
|
|
void
|
|
llarp_run_router(struct llarp_router *router, struct llarp_nodedb *nodedb);
|
|
|
|
void
|
|
llarp_stop_router(struct llarp_router *router);
|
|
|
|
struct llarp_router_link_iter
|
|
{
|
|
void *user;
|
|
bool (*visit)(struct llarp_router_link_iter *, struct llarp_router *,
|
|
struct llarp_link *);
|
|
};
|
|
|
|
void
|
|
llarp_router_iterate_links(struct llarp_router *router,
|
|
struct llarp_router_link_iter iter);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|