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/llarp/dns.h

23 lines
281 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;
using dnsc_answer_hook_func = void (*)(dnsc_answer_request *);
#ifdef __cplusplus
}
#endif
#endif