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.h

55 lines
1.1 KiB
C

7 years ago
#ifndef LLARP_H_
#define LLARP_H_
#include <llarp/dht.h>
7 years ago
#include <llarp/ev.h>
6 years ago
#include <llarp/logic.h>
#include <llarp/mem.h>
6 years ago
#include <llarp/nodedb.h>
#include <llarp/router.h>
#include <llarp/version.h>
#ifdef __cplusplus
extern "C" {
#endif
/// llarp application context for C api
struct llarp_main;
/// initialize application context and load config
struct llarp_main *
llarp_main_init(const char *fname, bool multiProcess);
/// handle signal for main context
void
llarp_main_signal(struct llarp_main *ptr, int sig);
/// set custom dht message handler function
void
llarp_main_set_dht_handler(struct llarp_main *ptr, llarp_dht_msg_handler h);
/// run main context
int
llarp_main_run(struct llarp_main *ptr);
/// load nodeDB into memory
int
llarp_main_loadDatabase(struct llarp_main *ptr);
/// iterator on nodedb entries
int
llarp_main_iterateDatabase(struct llarp_main *ptr, struct llarp_nodedb_iter i);
/// put RC into nodeDB
bool
llarp_main_putDatabase(struct llarp_main *ptr, struct llarp_rc *rc);
void
llarp_main_free(struct llarp_main *ptr);
#ifdef __cplusplus
}
#endif
7 years ago
#endif