mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
7caa87862e
All #ifndef guards on headers have been removed, I think, in favor of #pragma once Headers are now included as `#include "filename"` if the included file resides in the same directory as the file including it, or any subdirectory therein. Otherwise they are included as `#include <project/top/dir/relative/path/filename>` The above does not include system/os headers.
54 lines
1.1 KiB
C++
54 lines
1.1 KiB
C++
#include "context.hpp"
|
|
#include "dht.h"
|
|
#include <llarp/router_contact.hpp>
|
|
|
|
llarp_dht_context::llarp_dht_context(llarp::AbstractRouter* router)
|
|
{
|
|
parent = router;
|
|
impl = llarp::dht::makeContext();
|
|
}
|
|
|
|
struct llarp_dht_context*
|
|
llarp_dht_context_new(llarp::AbstractRouter* router)
|
|
{
|
|
return new llarp_dht_context(router);
|
|
}
|
|
|
|
void
|
|
llarp_dht_context_free(struct llarp_dht_context* ctx)
|
|
{
|
|
delete ctx;
|
|
}
|
|
|
|
void
|
|
__llarp_dht_remove_peer(struct llarp_dht_context* ctx, const byte_t* id)
|
|
{
|
|
ctx->impl->Nodes()->DelNode(llarp::dht::Key_t(id));
|
|
}
|
|
|
|
void
|
|
llarp_dht_allow_transit(llarp_dht_context* ctx)
|
|
{
|
|
ctx->impl->AllowTransit() = true;
|
|
}
|
|
|
|
void
|
|
llarp_dht_context_start(struct llarp_dht_context* ctx, const byte_t* key)
|
|
{
|
|
ctx->impl->Init(llarp::dht::Key_t(key), ctx->parent);
|
|
}
|
|
|
|
void
|
|
llarp_dht_lookup_router(struct llarp_dht_context* ctx, struct llarp_router_lookup_job* job)
|
|
{
|
|
job->dht = ctx;
|
|
job->found = false;
|
|
job->result.Clear();
|
|
// llarp_rc_clear(&job->result);
|
|
llarp::LogError("implement me llarp_dht_lookup_router");
|
|
/*
|
|
ctx->parent->logic->queue_job(
|
|
{job, &llarp::dht::Context::queue_router_lookup});
|
|
*/
|
|
}
|