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

76 lines
1.3 KiB
C++

#ifndef LLARP_HPP
#define LLARP_HPP
#include <llarp.h>
#include <iostream>
#include <llarp/threading.hpp>
#include <string>
#include <vector>
#include <llarp/crypto.h>
namespace llarp
{
struct Context
{
~Context();
int num_nethreads = 1;
bool singleThreaded = false;
std::vector< std::thread > netio_threads;
6 years ago
llarp_crypto crypto = {};
6 years ago
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;
char nodedb_dir[256] = {0};
char conatctFile[256] = "router.signed";
bool
LoadConfig(const std::string &fname);
void
Close();
int
LoadDatabase();
int
IterateDatabase(struct llarp_nodedb_iter i);
bool
PutDatabase(struct llarp_rc *rc);
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;
};
6 years ago
} // namespace llarp
#endif