annotate src/lookup.h @ 407:164468dd0953
Minor refactoring.
author |
markus schnalke <meillo@marmaro.de> |
date |
Wed, 29 Feb 2012 10:37:21 +0100 |
parents |
41958685480d |
children |
|
rev |
line source |
meillo@367
|
1 /*
|
meillo@367
|
2 ** MasqMail
|
meillo@367
|
3 ** Copyright (C) Oliver Kurth,
|
meillo@367
|
4 **
|
meillo@367
|
5 ** This program is free software; you can redistribute it and/or modify
|
meillo@367
|
6 ** it under the terms of the GNU General Public License as published by
|
meillo@367
|
7 ** the Free Software Foundation; either version 2 of the License, or
|
meillo@367
|
8 ** (at your option) any later version.
|
meillo@367
|
9 **
|
meillo@367
|
10 ** This program is distributed in the hope that it will be useful,
|
meillo@367
|
11 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
meillo@367
|
12 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
meillo@367
|
13 ** GNU General Public License for more details.
|
meillo@367
|
14 **
|
meillo@367
|
15 ** You should have received a copy of the GNU General Public License
|
meillo@367
|
16 ** along with this program; if not, write to the Free Software
|
meillo@367
|
17 ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
meillo@367
|
18 */
|
meillo@0
|
19
|
meillo@0
|
20 #define MAX_DNSNAME MAXDNAME
|
meillo@0
|
21
|
meillo@10
|
22 typedef struct {
|
meillo@10
|
23 guint32 ip;
|
meillo@10
|
24 int pref;
|
meillo@10
|
25 guchar *name;
|
meillo@0
|
26 } mxip_addr;
|
meillo@0
|
27
|
meillo@0
|
28
|
meillo@10
|
29 typedef GList *(*resolve_func) (GList *, gchar *);
|
meillo@0
|
30
|
meillo@366
|
31 GList *resolve_dns_a(GList *list, gchar *domain);
|
meillo@366
|
32 GList *resolve_dns_mx(GList *list, gchar *domain);
|
meillo@366
|
33 GList *resolve_byname(GList *list, gchar *domain);
|
meillo@366
|
34 int dns_look_ip(gchar *domain, guint32 *ip);
|