diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-25 18:08:43 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-25 18:08:43 +0000 |
commit | 4fbbabc2705e0c7320516b673f855494d48ec81d (patch) | |
tree | 495ca03682e822bc61bc11a028d1a3c263da00c3 /mx.h | |
parent | b0bb563ec965e7b863e86585ae2d148f9915ee60 (diff) | |
download | fetchmail-4fbbabc2705e0c7320516b673f855494d48ec81d.tar.gz fetchmail-4fbbabc2705e0c7320516b673f855494d48ec81d.tar.bz2 fetchmail-4fbbabc2705e0c7320516b673f855494d48ec81d.zip |
Initial revision
svn path=/trunk/; revision=379
Diffstat (limited to 'mx.h')
-rw-r--r-- | mx.h | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,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 */ |