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:06:49 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
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 14:08:54 +00:00
|
|
|
struct llarp_dht_msg;
|
|
|
|
|
|
|
|
/// handler function
|
|
|
|
/// f(outmsg, inmsg)
|
|
|
|
/// returns true if outmsg has been filled otherwise returns false
|
|
|
|
typedef bool (*llarp_dht_msg_handler)(struct llarp_dht_msg*,
|
|
|
|
struct llarp_dht_msg*);
|
|
|
|
|
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
|
|
|
|
|
|
|
// override dht message handler with custom handler
|
|
|
|
void
|
|
|
|
llarp_dht_set_msg_handler(struct llarp_dht_context* ctx,
|
|
|
|
llarp_dht_msg_handler func);
|
|
|
|
|
2018-06-01 21:35:17 +00:00
|
|
|
struct llarp_router_lookup_job;
|
|
|
|
|
|
|
|
typedef void (*llarp_rotuer_lookup_handler)(struct llarp_router_lookup_job*);
|
|
|
|
|
|
|
|
struct llarp_router_lookup_job
|
|
|
|
{
|
|
|
|
void* user;
|
|
|
|
llarp_rotuer_lookup_handler hook;
|
|
|
|
struct llarp_dht_context* dht;
|
2018-06-12 11:57:14 +00:00
|
|
|
byte_t target[PUBKEYSIZE];
|
2018-06-01 21:35:17 +00:00
|
|
|
bool found;
|
2018-06-06 12:59:15 +00:00
|
|
|
struct llarp_rc result;
|
2018-06-01 21:35:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// shallow copy
|
|
|
|
void
|
|
|
|
llarp_dht_put_local_router(struct llarp_dht_context* ctx, struct llarp_rc* rc);
|
|
|
|
|
|
|
|
void
|
|
|
|
llarp_dht_remove_local_router(struct llarp_dht_context* ctx, const byte_t* id);
|
|
|
|
|
|
|
|
void
|
|
|
|
llarp_dht_lookup_router(struct llarp_dht_context* ctx,
|
|
|
|
struct llarp_router_lookup_job* job);
|
|
|
|
|
2018-02-01 17:06:49 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|