You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/include/llarp/dht.h

28 lines
326 B
C

#ifndef LLARP_DHT_H_
#define LLARP_DHT_H_
/**
* dht.h
*
* DHT functions
*/
#ifdef __cplusplus
extern "C" {
#endif
struct llarp_dht_context;
/// allocator
struct llarp_dht_context*
llarp_dht_context_new();
/// deallocator
void
llarp_dht_context_free(struct llarp_dht_context* dht);
#ifdef __cplusplus
}
#endif
#endif