aboutsummaryrefslogtreecommitdiffstats
path: root/mx.h
blob: cc0e28d5bffd49d72552ce82547e7af4f1710cb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 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 */
/* But only declare it if it isn't already */
#ifndef h_errno
extern int h_errno;
#endif /* ndef h_errno */

/* mx.h ends here */