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

37 lines
741 B
C
Raw Normal View History

2018-02-01 18:06:49 +01:00
#ifndef LLARP_DHT_H_
#define LLARP_DHT_H_
2018-05-25 11:17:08 +02:00
2018-06-01 16:08:54 +02:00
#include <llarp/buffer.h>
2018-06-01 23:35:17 +02:00
#include <llarp/router.h>
2018-06-01 16:08:54 +02:00
2018-05-25 11:17:08 +02:00
/**
* dht.h
*
* DHT functions
*/
2018-02-01 18:07:01 +01:00
struct llarp_dht_context;
2018-02-01 18:06:49 +01:00
2018-05-25 11:17:08 +02:00
/// allocator
struct llarp_dht_context*
2018-06-01 23:35:17 +02:00
llarp_dht_context_new(struct llarp_router* parent);
2018-05-25 11:17:08 +02:00
/// deallocator
void
llarp_dht_context_free(struct llarp_dht_context* dht);
2018-02-01 18:06:49 +01:00
2018-06-01 23:35:17 +02:00
/// start dht context with our location in keyspace
2018-06-01 16:08:54 +02:00
void
2018-06-01 23:35:17 +02:00
llarp_dht_context_start(struct llarp_dht_context* ctx, const byte_t* key);
2018-06-01 16:08:54 +02:00
2018-06-13 18:32:34 +02:00
/// start allowing dht participation on a context
void
llarp_dht_allow_transit(struct llarp_dht_context* ctx);
2018-06-14 16:04:42 +02:00
/// remove router from tracked dht peer list
/// internal function do not use
2018-06-01 23:35:17 +02:00
void
__llarp_dht_remove_peer(struct llarp_dht_context* ctx, const byte_t* id);
2018-06-01 23:35:17 +02:00
2018-02-01 18:06:49 +01:00
#endif