aboutsummaryrefslogtreecommitdiffstats
path: root/mx.h
blob: 0a28f2b0c3c1667cdb160169ca4561aaf9a09ca2 (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
{
    char	*name;
    int		pref;
};

extern struct mxentry * getmxrecords(const char *);

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

/* mx.h ends here */