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

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

#ifdef HAVE_PROTOTYPES
extern int getmxrecords(char *, int, struct mxentry *);
#endif /* HAVE_PROTOTYPES */

/* mx.h ends here */