mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-11 07:10:36 +00:00
16 lines
256 B
C
16 lines
256 B
C
#ifndef LLARP_DHT_H_
|
|
#define LLARP_DHT_H_
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct llarp_dht_context;
|
|
|
|
struct llarp_dht_context* llarp_dht_context_new();
|
|
void llarp_dht_context_free(struct llarp_dht_context* dht);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|