1 /* $NetBSD: smtpd_resolve.h,v 1.2 2017/02/14 01:16:48 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 /* TLS support originally by: 35 /* Lutz Jaenicke 36 /* BTU Cottbus 37 /* Allgemeine Elektrotechnik 38 /* Universitaetsplatz 3-4 39 /* D-03044 Cottbus, Germany 40 /*--*/ 41