lokinet/llarp/dht/dht.h

66 lines
1.4 KiB
C
Raw Normal View History

2018-02-01 17:06:49 +00:00
#ifndef LLARP_DHT_H_
#define LLARP_DHT_H_
2018-05-25 09:17:08 +00:00
2019-01-13 14:00:50 +00:00
#include <crypto/crypto.hpp>
2018-12-12 01:55:30 +00:00
#include <router_contact.hpp>
2019-02-02 23:12:42 +00:00
#include <util/buffer.hpp>
2018-06-01 14:08:54 +00:00
2018-05-25 09:17:08 +00:00
/**
* dht.h
*
* DHT functions
*/
2018-02-01 17:07:01 +00:00
struct llarp_dht_context;
2018-02-01 17:06:49 +00:00
namespace llarp
{
struct AbstractRouter;
}
2018-05-25 09:17:08 +00:00
/// allocator
struct llarp_dht_context*
llarp_dht_context_new(llarp::AbstractRouter* parent);
2018-05-25 09:17:08 +00:00
/// deallocator
void
llarp_dht_context_free(struct llarp_dht_context* dht);
2018-02-01 17:06:49 +00:00
2018-06-01 21:35:17 +00:00
/// start dht context with our location in keyspace
2018-06-01 14:08:54 +00:00
void
2018-06-01 21:35:17 +00:00
llarp_dht_context_start(struct llarp_dht_context* ctx, const byte_t* key);
2018-06-01 14:08:54 +00:00
// remove this? dns needs it atm
2018-06-01 21:35:17 +00:00
struct llarp_router_lookup_job;
2019-07-30 23:42:13 +00:00
using llarp_router_lookup_handler = void (*)(struct llarp_router_lookup_job*);
2018-06-01 21:35:17 +00:00
struct llarp_router_lookup_job
{
2018-06-28 11:33:52 +00:00
/// can be anything but usually a class context for hook
2018-06-01 21:35:17 +00:00
void* user;
2018-06-18 07:54:50 +00:00
llarp_router_lookup_handler hook;
2018-06-01 21:35:17 +00:00
struct llarp_dht_context* dht;
llarp::PubKey target;
2018-06-01 21:35:17 +00:00
bool found;
// make sure you initialize addr and exits
llarp::RouterContact result;
bool iterative;
2018-06-01 21:35:17 +00:00
};
// end dns requirement
2018-06-01 21:35:17 +00:00
2018-06-13 16:32:34 +00:00
/// start allowing dht participation on a context
void
llarp_dht_allow_transit(struct llarp_dht_context* ctx);
2018-06-14 14:04:42 +00:00
/// remove router from tracked dht peer list
/// internal function do not use
2018-06-01 21:35:17 +00:00
void
__llarp_dht_remove_peer(struct llarp_dht_context* ctx, const byte_t* id);
2018-06-01 21:35:17 +00:00
void
llarp_dht_lookup_router(struct llarp_dht_context* ctx,
struct llarp_router_lookup_job* job);
2018-02-01 17:06:49 +00:00
#endif