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

63 lines
1.2 KiB
C++
Raw Normal View History

#ifndef LLARP_HPP
#define LLARP_HPP
#include <llarp.h>
#include <iostream>
#include <string>
#include <thread>
#include <vector>
namespace llarp
{
struct Context
{
2018-06-06 14:46:26 +02:00
Context(std::ostream &stdout, bool signleThread = false);
~Context();
2018-06-06 14:46:26 +02:00
int num_nethreads = 1;
bool singleThreaded = false;
std::vector< std::thread > netio_threads;
llarp_crypto crypto;
2018-06-01 16:08:54 +02: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;
llarp_dht_msg_handler custom_dht_func = nullptr;
char nodedb_dir[256] = {0};
bool
LoadConfig(const std::string &fname);
void
Close();
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;
std::ostream &out;
};
}
#endif