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

23 lines
287 B
C

#ifndef LLARP_DNS_H_
#define LLARP_DNS_H_
#ifdef __cplusplus
extern "C"
{
#endif
/**
* dns.h
*
* dns client/server
*/
// fwd declr
struct dnsc_answer_request;
typedef void (*dnsc_answer_hook_func)(dnsc_answer_request *request);
#ifdef __cplusplus
}
#endif
#endif