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/include/llarp/router.h

80 lines
2.0 KiB
C

7 years ago
#ifndef LLARP_ROUTER_H_
#define LLARP_ROUTER_H_
#include <llarp/config.h>
#include <llarp/ev.h>
#include <llarp/ibmq.h>
#include <llarp/link.h>
6 years ago
#include <llarp/logic.h>
#include <llarp/obmd.h>
#include <llarp/router_contact.h>
#include <llarp/threadpool.h>
7 years ago
#ifdef __cplusplus
extern "C" {
#endif
7 years ago
struct llarp_router;
7 years ago
bool
llarp_findOrCreateIdentity(llarp_crypto *crypto, const char *path,
llarp_seckey_t *identity);
bool
llarp_rc_write(struct llarp_rc *rc, const char *our_rc_file);
struct llarp_router *
llarp_init_router(struct llarp_alloc *mem, struct llarp_threadpool *worker,
struct llarp_ev_loop *netloop, struct llarp_logic *logic);
void
llarp_free_router(struct llarp_router **router);
7 years ago
void
llarp_rc_clear(struct llarp_rc *rc);
bool
llarp_rc_addr_list_iter(struct llarp_ai_list_iter *iter, struct llarp_ai *ai);
bool
llarp_router_try_connect(struct llarp_router *router, struct llarp_rc *remtoe);
7 years ago
bool
llarp_configure_router(struct llarp_router *router, struct llarp_config *conf);
void
llarp_rc_set_addrs(struct llarp_rc *rc, struct llarp_alloc *mem,
struct llarp_ai_list *addr);
void
llarp_rc_set_pubkey(struct llarp_rc *rc, uint8_t *pubkey);
void
llarp_rc_sign(llarp_crypto *crypto, llarp_seckey_t *identity,
struct llarp_rc *rc);
void
llarp_run_router(struct llarp_router *router);
void
llarp_stop_router(struct llarp_router *router);
7 years ago
/** get router's inbound link level frame queue */
struct llarp_link_queue *
llarp_router_link_queue(struct llarp_router *router);
7 years ago
/** get router's outbound link level frame dispatcher */
struct llarp_link_dispatcher *
llarp_router_link_dispatcher(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);
7 years ago
#ifdef __cplusplus
}
#endif
#endif