core: Added new headers for re-arched design
[lumina.git] / core / include / dns_handler.h
blobe1f957c1e4e49503c60b63ac6a338ce19ce0eb1f
1 #ifndef DNS_HANDLER_H
3 #include "config.h"
5 struct dns_handler {
6 core_t *c;
7 };
9 dns_request_t *new_dns_request(dns_handler_t *h, const char *node, const char *service, const struct addrinfo *hints);
11 void dns_handler_queue(dns_handler_t *h, dns_request_t *dr);
13 #endif