File: mx.h

package info (click to toggle)
fetchmail-ssl 5.9.11-6.2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,952 kB
  • ctags: 2,498
  • sloc: ansic: 20,487; sh: 3,574; python: 1,705; yacc: 761; makefile: 682; perl: 640; lex: 258; awk: 124; sed: 93; lisp: 84
file content (19 lines) | stat: -rw-r--r-- 431 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* mx.h -- name-to-preference association for MX records.
 * For license terms, see the file COPYING in this directory.
 */

struct mxentry
{
    unsigned 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 */