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

56 lines
1.2 KiB
C++
Raw Normal View History

2018-07-11 15:21:44 +02:00
#include <llarp/dht.h>
2018-06-01 16:08:54 +02:00
#include "router.hpp"
2018-06-13 18:32:34 +02:00
#include "router_contact.hpp"
2018-06-01 16:08:54 +02:00
2018-06-01 23:35:17 +02:00
llarp_dht_context::llarp_dht_context(llarp_router *router)
{
parent = router;
}
2018-07-09 14:30:01 +02:00
struct llarp_dht_context *
llarp_dht_context_new(struct llarp_router *router)
2018-06-01 16:08:54 +02:00
{
2018-07-09 14:30:01 +02:00
return new llarp_dht_context(router);
}
2018-06-01 16:08:54 +02:00
2018-07-09 14:30:01 +02:00
void
llarp_dht_context_free(struct llarp_dht_context *ctx)
{
delete ctx;
}
2018-06-01 16:08:54 +02:00
2018-07-09 14:30:01 +02:00
void
__llarp_dht_remove_peer(struct llarp_dht_context *ctx, const byte_t *id)
2018-07-09 14:30:01 +02:00
{
llarp::dht::Key_t k = id;
2018-07-13 11:27:13 +02:00
llarp::LogDebug("Removing ", k, " to DHT");
2018-07-09 14:30:01 +02:00
ctx->impl.nodes->DelNode(k);
}
2018-06-01 23:35:17 +02:00
2018-07-09 14:30:01 +02:00
void
llarp_dht_allow_transit(llarp_dht_context *ctx)
{
ctx->impl.allowTransit = true;
}
2018-06-13 18:32:34 +02:00
2018-07-09 14:30:01 +02:00
void
llarp_dht_context_start(struct llarp_dht_context *ctx, const byte_t *key)
{
ctx->impl.Init(key, ctx->parent, 20000);
2018-07-09 14:30:01 +02:00
}
2018-06-01 23:35:17 +02:00
2018-07-09 14:30:01 +02:00
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");
/*
2018-07-09 14:30:01 +02:00
llarp_logic_queue_job(ctx->parent->logic,
{job, &llarp::dht::Context::queue_router_lookup});
*/
2018-07-09 14:30:01 +02:00
}