xref: /netbsd-src/external/ibm-public/postfix/dist/src/smtpd/smtpd_resolve.h (revision 33881f779a77dce6440bdc44610d94de75bebefe)
1 /*	$NetBSD: smtpd_resolve.h,v 1.3 2020/03/18 19:05:20 christos Exp $	*/
2 
3 /*++
4 /* NAME
5 /*	smtpd_resolve 3h
6 /* SUMMARY
7 /*	caching resolve client
8 /* SYNOPSIS
9 /*	include <smtpd_resolve.h>
10 /* DESCRIPTION
11 /* .nf
12 
13  /*
14   * Global library.
15   */
16 #include <resolve_clnt.h>
17 
18  /*
19   * External interface.
20   */
21 extern void smtpd_resolve_init(int);
22 extern const RESOLVE_REPLY *smtpd_resolve_addr(const char*, const char *);
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 /*	Wietse Venema
35 /*	Google, Inc.
36 /*	111 8th Avenue
37 /*	New York, NY 10011, USA
38 /*
39 /*	TLS support originally by:
40 /*	Lutz Jaenicke
41 /*	BTU Cottbus
42 /*	Allgemeine Elektrotechnik
43 /*	Universitaetsplatz 3-4
44 /*	D-03044 Cottbus, Germany
45 /*--*/
46