]> jfr.im git - solanum.git/blobdiff - include/dns.h
ircd: irc_radixtree: add some convenience functions for tracking radix tree stats
[solanum.git] / include / dns.h
index df8dafa48dd457c61704c52da85b2971d1a93eff..b06ab1e6c5d19bef3d801fc0fccd95826d44e935 100644 (file)
 
 typedef void (*DNSCB)(const char *res, int status, int aftype, void *data);
 
+extern rb_helper *authd_helper;
+
 void init_authd(void);
 void restart_authd(void);
 void rehash_authd(void);
+void check_authd(void);
 
 uint16_t lookup_hostname(const char *hostname, int aftype, DNSCB callback, void *data);
 uint16_t lookup_ip(const char *hostname, int aftype, DNSCB callback, void *data);
 void cancel_lookup(uint16_t xid);
-
+void dns_results_callback(const char *callid, const char *status, const char *aftype, const char *results);
 void report_dns_servers(struct Client *);
 
 #endif