aboutsummaryrefslogtreecommitdiffstats
path: root/mx.h
blob: 30da95b5ed14c537f05b09b0c322c2a7c31b6fbc (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 struct mxentry * getmxrecords(const char *);
#endif /* HAVE_PROTOTYPES */

/* mx.h ends here */