blob: 57c23cdcaee90c2bfd015a8602c4ffa78068ebc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* mx.h -- name-to-preference association for MX records */
struct mxentry
{
char *name;
int pref;
};
extern struct mxentry * getmxrecords(const char *);
/* mx.h ends here */
|