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