2018-02-01 17:06:49 +00:00
|
|
|
#ifndef LLARP_DHT_H_
|
|
|
|
#define LLARP_DHT_H_
|
2018-05-25 09:17:08 +00:00
|
|
|
|
2018-06-01 14:08:54 +00:00
|
|
|
#include <llarp/buffer.h>
|
2018-06-01 21:35:17 +00:00
|
|
|
#include <llarp/router.h>
|
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
|
|
|
|
2018-05-25 09:17:08 +00:00
|
|
|
/// allocator
|
2018-05-22 15:54:19 +00:00
|
|
|
struct llarp_dht_context*
|
2018-06-01 21:35:17 +00:00
|
|
|
llarp_dht_context_new(struct llarp_router* parent);
|
2018-05-25 09:17:08 +00:00
|
|
|
|
|
|
|
/// deallocator
|
2018-05-22 15:54:19 +00:00
|
|
|
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
|
|
|
|
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
|
2018-08-17 19:49:58 +00:00
|
|
|
/// internal function do not use
|
2018-06-01 21:35:17 +00:00
|
|
|
void
|
2018-08-17 19:49:58 +00:00
|
|
|
__llarp_dht_remove_peer(struct llarp_dht_context* ctx, const byte_t* id);
|
2018-06-01 21:35:17 +00:00
|
|
|
|
2018-02-01 17:06:49 +00:00
|
|
|
#endif
|