]> Pileus Git - ~andy/fetchmail/blob - mx.h
Initial revision
[~andy/fetchmail] / mx.h
1 /* mx.h -- name-to-preference association for MX records */
2
3 struct mxentry
4 {
5     char        *name;
6     int         pref;
7 };
8
9 #ifdef HAVE_PROTOTYPES
10 extern int getmxrecords(char *, int, struct mxentry *);
11 #endif /* HAVE_PROTOTYPES */
12
13 /* mx.h ends here */