]> Pileus Git - ~andy/fetchmail/blob - mx.h
Prepare 6.5.0.beta1.
[~andy/fetchmail] / mx.h
1 /* mx.h -- name-to-preference association for MX records.
2  * For license terms, see the file COPYING in this directory.
3  */
4
5 #include "config.h"
6
7 #include <netdb.h>
8
9 struct mxentry
10 {
11     char        *name;
12     int         pref;
13 };
14
15 extern struct mxentry * getmxrecords(const char *);
16
17 #if !HAVE_DECL_H_ERRNO
18 extern int h_errno;
19 #endif
20
21 /* mx.h ends here */