xref: /netbsd-src/external/ibm-public/postfix/dist/src/smtp/smtp_addr.h (revision 56bb44cae5b13a6b74792381ba1e6d930b26aa67)
1 /*	$NetBSD: smtp_addr.h,v 1.1.1.1 2009/06/23 10:08:54 tron Exp $	*/
2 
3 /*++
4 /* NAME
5 /*	smtp_addr 3h
6 /* SUMMARY
7 /*	SMTP server address lookup
8 /* SYNOPSIS
9 /*	#include "smtp_addr.h"
10 /* DESCRIPTION
11 /* .nf
12 
13  /*
14   * DNS library.
15   */
16 #include <dns.h>
17 
18  /*
19   * Internal interfaces.
20   */
21 extern DNS_RR *smtp_host_addr(const char *, int, DSN_BUF *);
22 extern DNS_RR *smtp_domain_addr(char *, int, DSN_BUF *, int *);
23 
24 /* LICENSE
25 /* .ad
26 /* .fi
27 /*	The Secure Mailer license must be distributed with this software.
28 /* AUTHOR(S)
29 /*	Wietse Venema
30 /*	IBM T.J. Watson Research
31 /*	P.O. Box 704
32 /*	Yorktown Heights, NY 10598, USA
33 /*--*/
34