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

18 lines
256 B
C
Raw Normal View History

2018-02-01 18:06:49 +01:00
#ifndef LLARP_DHT_H_
#define LLARP_DHT_H_
#ifdef __cplusplus
extern "C" {
#endif
2018-02-01 18:07:01 +01:00
struct llarp_dht_context;
2018-02-01 18:06:49 +01:00
struct llarp_dht_context*
llarp_dht_context_new();
void
llarp_dht_context_free(struct llarp_dht_context* dht);
2018-02-01 18:06:49 +01:00
#ifdef __cplusplus
}
#endif
#endif