1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/include/llarp.h

58 lines
1.2 KiB
C
Raw Normal View History

2018-01-25 17:24:33 +01:00
#ifndef LLARP_H_
#define LLARP_H_
2018-06-01 16:08:54 +02:00
#include <llarp/dht.h>
2018-01-25 17:24:33 +01:00
#include <llarp/ev.h>
2018-04-30 20:18:18 +02:00
#include <llarp/logic.h>
#include <llarp/mem.h>
2018-05-11 01:32:46 +02:00
#include <llarp/nodedb.h>
#include <llarp/router.h>
#include <llarp/version.h>
2018-05-27 20:03:10 +02:00
#ifdef __cplusplus
extern "C" {
#endif
/// llarp application context for C api
2018-05-27 20:03:10 +02:00
struct llarp_main;
/// initialize application context and load config
2018-05-27 21:13:25 +02:00
struct llarp_main *
llarp_main_init(const char *fname, bool multiProcess);
2018-05-27 20:03:10 +02:00
/// handle signal for main context
2018-05-27 20:03:10 +02:00
void
llarp_main_signal(struct llarp_main *ptr, int sig);
/// set custom dht message handler function
2018-06-01 16:08:54 +02:00
void
llarp_main_set_dht_handler(struct llarp_main *ptr, llarp_dht_msg_handler h);
/// run main context
2018-05-27 20:03:10 +02:00
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);
2018-06-21 13:11:55 +02:00
/// put RC into nodeDB
bool
llarp_main_putDatabase(struct llarp_main *ptr, struct llarp_rc *rc);
2018-06-21 13:11:55 +02:00
struct llarp_rc *
llarp_main_getDatabase(struct llarp_main *ptr, byte_t *pk);
2018-05-27 20:03:10 +02:00
void
2018-05-27 21:13:25 +02:00
llarp_main_free(struct llarp_main *ptr);
2018-05-27 20:03:10 +02:00
#ifdef __cplusplus
}
#endif
2018-01-25 17:24:33 +01:00
#endif