2018-05-27 17:44:01 +00:00
|
|
|
#ifndef LLARP_HPP
|
|
|
|
#define LLARP_HPP
|
|
|
|
|
|
|
|
#include <llarp.h>
|
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
#include <thread>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
struct Context
|
|
|
|
{
|
2018-06-06 12:46:26 +00:00
|
|
|
Context(std::ostream &stdout, bool signleThread = false);
|
2018-05-27 17:44:01 +00:00
|
|
|
~Context();
|
|
|
|
|
2018-06-06 12:46:26 +00:00
|
|
|
int num_nethreads = 1;
|
|
|
|
bool singleThreaded = false;
|
2018-05-27 17:44:01 +00:00
|
|
|
std::vector< std::thread > netio_threads;
|
|
|
|
llarp_crypto crypto;
|
2018-06-01 14:08:54 +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;
|
|
|
|
llarp_dht_msg_handler custom_dht_func = nullptr;
|
|
|
|
char nodedb_dir[256] = {0};
|
2018-06-28 11:32:03 +00:00
|
|
|
char conatctFile[256] = "router.signed";
|
2018-05-27 17:44:01 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2018-06-23 14:56:59 +00:00
|
|
|
int
|
|
|
|
Setup();
|
|
|
|
|
2018-05-27 17:44:01 +00:00
|
|
|
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;
|
|
|
|
};
|
2018-07-09 03:34:29 +00:00
|
|
|
} // namespace llarp
|
2018-05-27 17:44:01 +00:00
|
|
|
|
|
|
|
#endif
|