lokinet/include/llarp.hpp

75 lines
1.2 KiB
C++
Raw Normal View History

#ifndef LLARP_HPP
#define LLARP_HPP
#include <llarp.h>
#include <iostream>
2018-08-02 23:36:34 +00:00
#include <llarp/threading.hpp>
#include <string>
#include <vector>
2018-08-30 18:48:43 +00:00
#include <llarp/crypto.h>
namespace llarp
{
struct Context
{
~Context();
2018-06-06 12:46:26 +00:00
int num_nethreads = 1;
bool singleThreaded = false;
std::vector< std::thread > netio_threads;
2018-07-24 06:37:12 +00:00
llarp_crypto crypto = {};
2018-07-12 18:21:44 +00:00
llarp_router *router = nullptr;
llarp_threadpool *worker = nullptr;
llarp_logic *logic = nullptr;
llarp_config *config = nullptr;
llarp_nodedb *nodedb = nullptr;
llarp_ev_loop *mainloop = nullptr;
2018-09-17 12:02:09 +00:00
std::string nodedb_dir;
bool
LoadConfig(const std::string &fname);
void
Close();
2018-06-19 09:45:29 +00:00
int
LoadDatabase();
int
IterateDatabase(struct llarp_nodedb_iter i);
bool
PutDatabase(struct llarp_rc *rc);
2018-06-21 11:11:55 +00:00
struct llarp_rc *
GetDatabase(const byte_t *pk);
int
Setup();
int
Run();
void
HandleSignal(int sig);
private:
void
SigINT();
bool
ReloadConfig();
static void
iter_config(llarp_config_iterator *itr, const char *section,
const char *key, const char *val);
void
progress();
std::string configfile;
};
2018-07-09 03:34:29 +00:00
} // namespace llarp
#endif