]> Pileus Git - ~andy/fetchmail/blob - mx.h
5e2824c0c05cc0eb16cf23e1223eeb6c1f39b8b4
[~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 */