aboutsummaryrefslogtreecommitdiffstats
path: root/mx.h
blob: b32a7ef43413ada96e946a92db32659ead0404f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* mx.h -- name-to-preference association for MX records */

struct mxentry
{
    unsigned char	*name;
    int			pref;
};

extern struct mxentry * getmxrecords(const unsigned char *);

/* some versions of FreeBSD should declare this but don't */
extern int h_errno;

/* mx.h ends here */