]> jfr.im git - solanum.git/blame - include/dns.h
Replace libera reps with amdj and spb
[solanum.git] / include / dns.h
CommitLineData
7d2852b4 1/*
a6f63a82 2 * solanum
7d2852b4
AC
3 * dns.h: A header with the DNS functions.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2012 ircd-ratbox development team
3fc0499e 8 * Copyright (C) 2016 Ariadne Conill <ariadne@dereferenced.org>
7d2852b4
AC
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
23 * USA
24 */
25
a6f63a82
EK
26#ifndef SOLANUM_DNS_H
27#define SOLANUM_DNS_H
7d2852b4 28
394b8dde 29#include "stdinc.h"
64fae260 30#include "authproc.h"
fb7d74ef 31
8a26cd19
EM
32extern rb_dlink_list nameservers;
33
394b8dde
EM
34typedef void (*DNSCB)(const char *res, int status, int aftype, void *data);
35typedef void (*DNSLISTCB)(int resc, const char *resv[], int status, void *data);
7d2852b4 36
068c6c4a
EM
37uint32_t lookup_hostname(const char *hostname, int aftype, DNSCB callback, void *data);
38uint32_t lookup_ip(const char *hostname, int aftype, DNSCB callback, void *data);
39void cancel_lookup(uint32_t xid);
40void cancel_dns_stats(uint32_t xid);
41
fb7d74ef 42void dns_results_callback(const char *callid, const char *status, const char *aftype, const char *results);
394b8dde 43void dns_stats_results_callback(const char *callid, const char *status, int resc, const char *resv[]);
068c6c4a
EM
44
45void init_dns(void);
46void reload_nameservers(void);
7d2852b4
AC
47
48#endif