2018-05-27 18:03:10 +00:00
|
|
|
#include <llarp.h>
|
2018-07-12 13:43:37 +00:00
|
|
|
#include <llarp/logger.h>
|
2018-05-27 17:44:01 +00:00
|
|
|
#include <signal.h>
|
|
|
|
#include <llarp.hpp>
|
|
|
|
#include "logger.hpp"
|
2018-06-28 11:40:46 +00:00
|
|
|
#include "math.h"
|
2018-06-29 12:15:15 +00:00
|
|
|
#include "router.hpp"
|
2018-05-27 17:44:01 +00:00
|
|
|
|
2018-05-30 20:56:47 +00:00
|
|
|
#if(__FreeBSD__)
|
2018-05-29 12:13:33 +00:00
|
|
|
#include <pthread_np.h>
|
|
|
|
#endif
|
|
|
|
|
2018-05-27 17:44:01 +00:00
|
|
|
namespace llarp
|
|
|
|
{
|
2018-06-06 12:46:26 +00:00
|
|
|
Context::Context(std::ostream &stdout, bool singleThread)
|
|
|
|
: singleThreaded(singleThread), out(stdout)
|
2018-05-27 17:44:01 +00:00
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogInfo(LLARP_VERSION, " ", LLARP_RELEASE_MOTTO);
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Context::~Context()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::progress()
|
|
|
|
{
|
|
|
|
out << "." << std::flush;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Context::ReloadConfig()
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
// llarp::LogInfo("loading config at ", configfile);
|
2018-06-19 09:44:53 +00:00
|
|
|
if(llarp_load_config(config, configfile.c_str()))
|
2018-05-27 17:44:01 +00:00
|
|
|
{
|
2018-06-19 09:44:53 +00:00
|
|
|
llarp_free_config(&config);
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("failed to load config file ", configfile);
|
2018-06-19 09:44:53 +00:00
|
|
|
return false;
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
2018-06-19 09:44:53 +00:00
|
|
|
llarp_config_iterator iter;
|
|
|
|
iter.user = this;
|
|
|
|
iter.visit = &iter_config;
|
|
|
|
llarp_config_iter(config, &iter);
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogInfo("config [", configfile, "] loaded");
|
2018-06-19 09:44:53 +00:00
|
|
|
return true;
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::iter_config(llarp_config_iterator *itr, const char *section,
|
|
|
|
const char *key, const char *val)
|
|
|
|
{
|
|
|
|
Context *ctx = static_cast< Context * >(itr->user);
|
|
|
|
if(!strcmp(section, "router"))
|
|
|
|
{
|
2018-06-06 12:46:26 +00:00
|
|
|
if(!strcmp(key, "worker-threads") && !ctx->singleThreaded)
|
2018-05-27 17:44:01 +00:00
|
|
|
{
|
|
|
|
int workers = atoi(val);
|
|
|
|
if(workers > 0 && ctx->worker == nullptr)
|
|
|
|
{
|
|
|
|
ctx->worker = llarp_init_threadpool(workers, "llarp-worker");
|
|
|
|
}
|
2018-06-29 12:15:15 +00:00
|
|
|
}
|
|
|
|
else if(!strcmp(key, "contact-file"))
|
2018-06-28 11:32:26 +00:00
|
|
|
{
|
|
|
|
strncpy(ctx->conatctFile, val, fmin(255, strlen(val)));
|
2018-06-29 12:15:15 +00:00
|
|
|
}
|
|
|
|
else if(!strcmp(key, "net-threads"))
|
2018-05-27 17:44:01 +00:00
|
|
|
{
|
|
|
|
ctx->num_nethreads = atoi(val);
|
|
|
|
if(ctx->num_nethreads <= 0)
|
|
|
|
ctx->num_nethreads = 1;
|
2018-06-06 12:46:26 +00:00
|
|
|
if(ctx->singleThreaded)
|
|
|
|
ctx->num_nethreads = 0;
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!strcmp(section, "netdb"))
|
|
|
|
{
|
|
|
|
if(!strcmp(key, "dir"))
|
|
|
|
{
|
|
|
|
strncpy(ctx->nodedb_dir, val, sizeof(ctx->nodedb_dir));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2018-06-19 09:44:53 +00:00
|
|
|
Context::LoadDatabase()
|
2018-05-27 17:44:01 +00:00
|
|
|
{
|
|
|
|
llarp_crypto_libsodium_init(&crypto);
|
2018-05-28 13:49:44 +00:00
|
|
|
nodedb = llarp_nodedb_new(&crypto);
|
2018-06-13 11:40:49 +00:00
|
|
|
if(!nodedb_dir[0])
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("no nodedb_dir configured");
|
2018-06-13 11:40:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nodedb_dir[sizeof(nodedb_dir) - 1] = 0;
|
|
|
|
if(!llarp_nodedb_ensure_dir(nodedb_dir))
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("nodedb_dir is incorrect");
|
2018-06-13 11:40:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-07-05 15:44:06 +00:00
|
|
|
// llarp::LogInfo("nodedb_dir [", nodedb_dir, "] configured!");
|
2018-06-13 11:40:49 +00:00
|
|
|
ssize_t loaded = llarp_nodedb_load_dir(nodedb, nodedb_dir);
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogInfo("nodedb_dir loaded ", loaded, " RCs from [", nodedb_dir,
|
|
|
|
"]");
|
2018-06-17 15:26:00 +00:00
|
|
|
if(loaded < 0)
|
2018-06-13 11:40:49 +00:00
|
|
|
{
|
|
|
|
// shouldn't be possible
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("nodedb_dir directory doesn't exist");
|
2018-06-13 11:40:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-06-19 09:44:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
Context::IterateDatabase(struct llarp_nodedb_iter i)
|
|
|
|
{
|
|
|
|
return llarp_nodedb_iterate_all(nodedb, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Context::PutDatabase(struct llarp_rc *rc)
|
|
|
|
{
|
|
|
|
return llarp_nodedb_put_rc(nodedb, rc);
|
|
|
|
}
|
|
|
|
|
2018-06-21 11:11:55 +00:00
|
|
|
struct llarp_rc *
|
|
|
|
Context::GetDatabase(const byte_t *pk)
|
|
|
|
{
|
|
|
|
return llarp_nodedb_get_rc(nodedb, pk);
|
|
|
|
}
|
2018-06-19 09:44:53 +00:00
|
|
|
|
|
|
|
int
|
2018-06-23 14:56:59 +00:00
|
|
|
Context::Setup()
|
2018-06-19 09:44:53 +00:00
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogInfo("starting up");
|
2018-06-19 09:44:53 +00:00
|
|
|
this->LoadDatabase();
|
|
|
|
llarp_ev_loop_alloc(&mainloop);
|
2018-06-13 11:40:49 +00:00
|
|
|
|
2018-06-06 17:02:57 +00:00
|
|
|
// ensure worker thread pool
|
|
|
|
if(!worker && !singleThreaded)
|
|
|
|
worker = llarp_init_threadpool(2, "llarp-worker");
|
|
|
|
else if(singleThreaded)
|
2018-05-27 17:44:01 +00:00
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogInfo("running in single threaded mode");
|
2018-06-06 17:02:57 +00:00
|
|
|
worker = llarp_init_same_process_threadpool();
|
|
|
|
}
|
|
|
|
// ensure netio thread
|
|
|
|
if(singleThreaded)
|
|
|
|
{
|
|
|
|
logic = llarp_init_single_process_logic(worker);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
logic = llarp_init_logic();
|
2018-05-27 17:44:01 +00:00
|
|
|
|
2018-06-06 17:02:57 +00:00
|
|
|
router = llarp_init_router(worker, mainloop, logic);
|
2018-05-27 17:44:01 +00:00
|
|
|
|
2018-06-23 14:56:59 +00:00
|
|
|
if(!llarp_configure_router(router, config))
|
2018-06-06 17:02:57 +00:00
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("Failed to configure router");
|
2018-06-23 14:56:59 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
// set nodedb, load our RC, establish DHT
|
|
|
|
llarp_run_router(router, nodedb);
|
|
|
|
|
2018-06-29 12:15:15 +00:00
|
|
|
return 0; // success
|
2018-06-23 14:56:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
Context::Run()
|
|
|
|
{
|
2018-06-29 12:15:15 +00:00
|
|
|
// just check to make sure it's not already set up (either this or we add a
|
|
|
|
// bool and/or add another function)
|
|
|
|
if(!this->router)
|
2018-06-23 14:56:59 +00:00
|
|
|
{
|
|
|
|
// set up all requirements
|
2018-06-29 12:15:15 +00:00
|
|
|
if(this->Setup())
|
2018-06-06 17:02:57 +00:00
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogError("Failed to setup router");
|
2018-06-23 14:56:59 +00:00
|
|
|
return 1;
|
2018-06-06 17:02:57 +00:00
|
|
|
}
|
2018-06-23 14:56:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// run net io thread
|
|
|
|
if(singleThreaded)
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogInfo("running mainloop");
|
2018-06-23 14:56:59 +00:00
|
|
|
llarp_ev_loop_run_single_process(mainloop, worker, logic);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto netio = mainloop;
|
|
|
|
while(num_nethreads--)
|
2018-06-06 17:02:57 +00:00
|
|
|
{
|
2018-06-23 14:56:59 +00:00
|
|
|
netio_threads.emplace_back([netio]() { llarp_ev_loop_run(netio); });
|
2018-05-30 20:56:47 +00:00
|
|
|
#if(__APPLE__ && __MACH__)
|
2018-05-29 12:13:33 +00:00
|
|
|
|
2018-05-30 20:56:47 +00:00
|
|
|
#elif(__FreeBSD__)
|
2018-06-29 12:15:15 +00:00
|
|
|
pthread_set_name_np(netio_threads.back().native_handle(),
|
|
|
|
"llarp-netio");
|
2018-05-29 12:13:33 +00:00
|
|
|
#else
|
2018-06-29 12:15:15 +00:00
|
|
|
pthread_setname_np(netio_threads.back().native_handle(), "llarp-netio");
|
2018-05-29 12:13:33 +00:00
|
|
|
#endif
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogInfo("running mainloop");
|
2018-06-23 14:56:59 +00:00
|
|
|
llarp_logic_mainloop(logic);
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
2018-06-23 14:56:59 +00:00
|
|
|
return 0;
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::HandleSignal(int sig)
|
|
|
|
{
|
|
|
|
if(sig == SIGINT)
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogInfo("SIGINT");
|
2018-05-27 17:44:01 +00:00
|
|
|
SigINT();
|
|
|
|
}
|
|
|
|
if(sig == SIGHUP)
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogInfo("SIGHUP");
|
2018-05-27 17:44:01 +00:00
|
|
|
ReloadConfig();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::SigINT()
|
|
|
|
{
|
2018-05-28 20:51:15 +00:00
|
|
|
Close();
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Context::Close()
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("stop router");
|
2018-05-28 20:51:15 +00:00
|
|
|
if(router)
|
|
|
|
llarp_stop_router(router);
|
2018-05-27 17:44:01 +00:00
|
|
|
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("stop workers");
|
2018-05-27 17:44:01 +00:00
|
|
|
if(worker)
|
|
|
|
llarp_threadpool_stop(worker);
|
|
|
|
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("join workers");
|
2018-05-27 17:44:01 +00:00
|
|
|
if(worker)
|
|
|
|
llarp_threadpool_join(worker);
|
|
|
|
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("stop logic");
|
2018-05-28 20:51:15 +00:00
|
|
|
|
2018-05-27 17:44:01 +00:00
|
|
|
if(logic)
|
|
|
|
llarp_logic_stop(logic);
|
|
|
|
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("free config");
|
2018-05-27 17:44:01 +00:00
|
|
|
llarp_free_config(&config);
|
|
|
|
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("free workers");
|
2018-05-27 17:44:01 +00:00
|
|
|
llarp_free_threadpool(&worker);
|
|
|
|
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("free nodedb");
|
2018-05-28 20:51:15 +00:00
|
|
|
llarp_nodedb_free(&nodedb);
|
2018-05-27 17:44:01 +00:00
|
|
|
|
2018-05-28 20:51:15 +00:00
|
|
|
for(size_t i = 0; i < netio_threads.size(); ++i)
|
|
|
|
{
|
|
|
|
if(mainloop)
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("stopping event loop thread ", i);
|
2018-05-28 20:51:15 +00:00
|
|
|
llarp_ev_loop_stop(mainloop);
|
|
|
|
}
|
|
|
|
}
|
2018-05-27 17:44:01 +00:00
|
|
|
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("free router");
|
2018-05-28 20:51:15 +00:00
|
|
|
llarp_free_router(&router);
|
|
|
|
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("free logic");
|
2018-05-28 20:51:15 +00:00
|
|
|
llarp_free_logic(&logic);
|
2018-05-27 17:44:01 +00:00
|
|
|
|
|
|
|
for(auto &t : netio_threads)
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("join netio thread");
|
2018-05-27 17:44:01 +00:00
|
|
|
t.join();
|
|
|
|
}
|
2018-05-28 20:51:15 +00:00
|
|
|
|
2018-05-27 17:44:01 +00:00
|
|
|
netio_threads.clear();
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogDebug("free mainloop");
|
2018-05-28 20:51:15 +00:00
|
|
|
llarp_ev_loop_free(&mainloop);
|
2018-05-27 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Context::LoadConfig(const std::string &fname)
|
|
|
|
{
|
|
|
|
llarp_new_config(&config);
|
|
|
|
configfile = fname;
|
|
|
|
return ReloadConfig();
|
|
|
|
}
|
2018-07-05 15:44:06 +00:00
|
|
|
} // namespace llarp
|
2018-05-27 18:03:10 +00:00
|
|
|
|
|
|
|
struct llarp_main
|
|
|
|
{
|
|
|
|
std::unique_ptr< llarp::Context > ctx;
|
|
|
|
};
|
|
|
|
|
2018-05-27 19:13:25 +00:00
|
|
|
struct llarp_main *
|
2018-06-06 12:49:46 +00:00
|
|
|
llarp_main_init(const char *fname, bool multiProcess)
|
2018-05-27 18:03:10 +00:00
|
|
|
{
|
|
|
|
if(!fname)
|
2018-05-28 20:51:15 +00:00
|
|
|
fname = "daemon.ini";
|
2018-07-12 13:43:37 +00:00
|
|
|
char *var = getenv("LLARP_DEBUG");
|
|
|
|
if(var && *var == '1')
|
|
|
|
{
|
|
|
|
cSetLogLevel(eLogDebug);
|
|
|
|
}
|
2018-05-27 18:03:10 +00:00
|
|
|
llarp_main *m = new llarp_main;
|
2018-06-06 12:49:46 +00:00
|
|
|
m->ctx.reset(new llarp::Context(std::cout, !multiProcess));
|
2018-05-27 18:03:10 +00:00
|
|
|
if(!m->ctx->LoadConfig(fname))
|
|
|
|
{
|
|
|
|
m->ctx->Close();
|
|
|
|
delete m;
|
2018-05-27 19:13:25 +00:00
|
|
|
return nullptr;
|
2018-05-27 18:03:10 +00:00
|
|
|
}
|
2018-05-27 19:13:25 +00:00
|
|
|
return m;
|
2018-05-27 18:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
llarp_main_signal(struct llarp_main *ptr, int sig)
|
|
|
|
{
|
|
|
|
ptr->ctx->HandleSignal(sig);
|
|
|
|
}
|
|
|
|
|
2018-06-23 14:56:59 +00:00
|
|
|
int
|
|
|
|
llarp_main_setup(struct llarp_main *ptr)
|
|
|
|
{
|
|
|
|
return ptr->ctx->Setup();
|
|
|
|
}
|
|
|
|
|
2018-05-27 18:03:10 +00:00
|
|
|
int
|
|
|
|
llarp_main_run(struct llarp_main *ptr)
|
|
|
|
{
|
2018-05-27 19:13:25 +00:00
|
|
|
return ptr->ctx->Run();
|
2018-05-27 18:03:10 +00:00
|
|
|
}
|
|
|
|
|
2018-07-03 11:25:36 +00:00
|
|
|
void
|
|
|
|
llarp_main_abort(struct llarp_main *ptr)
|
|
|
|
{
|
|
|
|
llarp_logic_stop_timer(ptr->ctx->router->logic);
|
|
|
|
}
|
|
|
|
|
2018-06-19 09:44:53 +00:00
|
|
|
int
|
|
|
|
llarp_main_loadDatabase(struct llarp_main *ptr)
|
|
|
|
{
|
|
|
|
return ptr->ctx->LoadDatabase();
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
llarp_main_iterateDatabase(struct llarp_main *ptr, struct llarp_nodedb_iter i)
|
|
|
|
{
|
|
|
|
return ptr->ctx->IterateDatabase(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
llarp_main_putDatabase(struct llarp_main *ptr, struct llarp_rc *rc)
|
|
|
|
{
|
|
|
|
return ptr->ctx->PutDatabase(rc);
|
|
|
|
}
|
|
|
|
|
2018-06-21 11:11:55 +00:00
|
|
|
struct llarp_rc *
|
|
|
|
llarp_main_getDatabase(struct llarp_main *ptr, byte_t *pk)
|
|
|
|
{
|
|
|
|
return ptr->ctx->GetDatabase(pk);
|
|
|
|
}
|
2018-06-29 12:15:15 +00:00
|
|
|
|
2018-06-28 11:32:26 +00:00
|
|
|
struct llarp_rc *
|
|
|
|
llarp_main_getLocalRC(struct llarp_main *ptr)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
/*
|
|
|
|
llarp_config_iterator iter;
|
|
|
|
iter.user = this;
|
|
|
|
iter.visit = &iter_config;
|
|
|
|
llarp_config_iter(ctx->config, &iter);
|
|
|
|
*/
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogInfo("Loading ", ptr->ctx->conatctFile);
|
2018-06-28 11:32:26 +00:00
|
|
|
llarp_rc *rc = llarp_rc_read(ptr->ctx->conatctFile);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2018-06-29 12:15:15 +00:00
|
|
|
void
|
|
|
|
llarp_main_checkOnline(void *u, uint64_t orig, uint64_t left)
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
// llarp::LogInfo("checkOnline - check ", left);
|
2018-06-28 11:32:26 +00:00
|
|
|
if(left)
|
|
|
|
return;
|
2018-06-29 12:15:15 +00:00
|
|
|
struct check_online_request *request =
|
|
|
|
static_cast< struct check_online_request * >(u);
|
2018-07-05 15:44:06 +00:00
|
|
|
// llarp::LogDebug("checkOnline - running");
|
|
|
|
// llarp::LogInfo("checkOnline - DHT nodes ",
|
2018-06-29 12:15:15 +00:00
|
|
|
// request->ptr->ctx->router->dht->impl.nodes->nodes.size());
|
2018-06-28 11:32:26 +00:00
|
|
|
request->online = false;
|
2018-06-29 12:15:15 +00:00
|
|
|
request->nodes = request->ptr->ctx->router->dht->impl.nodes->nodes.size();
|
|
|
|
if(request->ptr->ctx->router->dht->impl.nodes->nodes.size())
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
// llarp::LogInfo("checkOnline - Going to say we're online");
|
2018-06-28 11:32:26 +00:00
|
|
|
request->online = true;
|
|
|
|
}
|
|
|
|
request->hook(request);
|
|
|
|
// reschedue our self
|
|
|
|
llarp_main_queryDHT(request);
|
|
|
|
}
|
|
|
|
|
2018-06-29 12:15:15 +00:00
|
|
|
void
|
|
|
|
llarp_main_queryDHT_online(struct check_online_request *request)
|
|
|
|
{
|
|
|
|
// Info("llarp_main_queryDHT_online: ", request->online ? "online" :
|
|
|
|
// "offline");
|
|
|
|
if(request->online && !request->first)
|
|
|
|
{
|
2018-06-28 11:32:26 +00:00
|
|
|
request->first = true;
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogInfo("llarp_main_queryDHT_online - We're online");
|
|
|
|
llarp::LogInfo("llarp_main_queryDHT_online - Querying DHT");
|
2018-06-28 11:32:26 +00:00
|
|
|
llarp_dht_lookup_router(request->ptr->ctx->router->dht, request->job);
|
|
|
|
}
|
|
|
|
}
|
2018-06-19 09:44:53 +00:00
|
|
|
|
2018-06-29 12:15:15 +00:00
|
|
|
void
|
|
|
|
llarp_main_queryDHT(struct check_online_request *request)
|
2018-06-23 14:56:59 +00:00
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
// llarp::LogInfo("llarp_main_queryDHT - setting up timer");
|
2018-06-28 11:32:26 +00:00
|
|
|
request->hook = &llarp_main_queryDHT_online;
|
|
|
|
llarp_logic_call_later(request->ptr->ctx->router->logic,
|
|
|
|
{1000, request, &llarp_main_checkOnline});
|
2018-06-29 12:15:15 +00:00
|
|
|
// llarp_dht_lookup_router(ptr->ctx->router->dht, job);
|
2018-06-23 14:56:59 +00:00
|
|
|
}
|
|
|
|
|
2018-05-27 18:03:10 +00:00
|
|
|
void
|
2018-05-27 19:13:25 +00:00
|
|
|
llarp_main_free(struct llarp_main *ptr)
|
2018-05-27 18:03:10 +00:00
|
|
|
{
|
2018-05-27 19:13:25 +00:00
|
|
|
delete ptr;
|
2018-05-27 18:03:10 +00:00
|
|
|
}
|