]> Pileus Git - ~andy/fetchmail/blob - mx.h
30da95b5ed14c537f05b09b0c322c2a7c31b6fbc
[~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 struct mxentry * getmxrecords(const char *);
11 #endif /* HAVE_PROTOTYPES */
12
13 /* mx.h ends here */