xref: /netbsd-src/external/ibm-public/postfix/dist/src/util/auto_clnt.h (revision 1b9578b8c2c1f848eeb16dabbfd7d1f0d9fdefbd)
1 /*	$NetBSD: auto_clnt.h,v 1.1.1.1 2009/06/23 10:08:59 tron Exp $	*/
2 
3 #ifndef _AUTO_CLNT_H_INCLUDED_
4 #define _AUTO_CLNT_H_INCLUDED_
5 
6 /*++
7 /* NAME
8 /*	auto_clnt 3h
9 /* SUMMARY
10 /*	client endpoint maintenance
11 /* SYNOPSIS
12 /*	#include <auto_clnt.h>
13 /* DESCRIPTION
14 /* .nf
15 
16  /*
17   * Utility library.
18   */
19 #include <vstream.h>
20 
21  /*
22   * External interface.
23   */
24 typedef struct AUTO_CLNT AUTO_CLNT;
25 
26 extern AUTO_CLNT *auto_clnt_create(const char *, int, int, int);
27 extern VSTREAM *auto_clnt_access(AUTO_CLNT *);
28 extern void auto_clnt_recover(AUTO_CLNT *);
29 extern const char *auto_clnt_name(AUTO_CLNT *);
30 extern void auto_clnt_free(AUTO_CLNT *);
31 
32 /* LICENSE
33 /* .ad
34 /* .fi
35 /*	The Secure Mailer license must be distributed with this software.
36 /* AUTHOR(S)
37 /*	Wietse Venema
38 /*	IBM T.J. Watson Research
39 /*	P.O. Box 704
40 /*	Yorktown Heights, NY 10598, USA
41 /*--*/
42 
43 #endif
44