Postfix3.3.1
auto_clnt.h
[詳解]
1 #ifndef _AUTO_CLNT_H_INCLUDED_
2 #define _AUTO_CLNT_H_INCLUDED_
3 
4 /*++
5 /* NAME
6 /* auto_clnt 3h
7 /* SUMMARY
8 /* client endpoint maintenance
9 /* SYNOPSIS
10 /* #include <auto_clnt.h>
11 /* DESCRIPTION
12 /* .nf
13 
14  /*
15  * Utility library.
16  */
17 #include <vstream.h>
18 
19  /*
20  * External interface.
21  */
22 typedef struct AUTO_CLNT AUTO_CLNT;
23 
24 extern AUTO_CLNT *auto_clnt_create(const char *, int, int, int);
26 extern void auto_clnt_recover(AUTO_CLNT *);
27 extern const char *auto_clnt_name(AUTO_CLNT *);
28 extern void auto_clnt_free(AUTO_CLNT *);
29 
30 /* LICENSE
31 /* .ad
32 /* .fi
33 /* The Secure Mailer license must be distributed with this software.
34 /* AUTHOR(S)
35 /* Wietse Venema
36 /* IBM T.J. Watson Research
37 /* P.O. Box 704
38 /* Yorktown Heights, NY 10598, USA
39 /*--*/
40 
41 #endif
const char * auto_clnt_name(AUTO_CLNT *)
Definition: auto_clnt.c:309
void auto_clnt_recover(AUTO_CLNT *)
Definition: auto_clnt.c:239
AUTO_CLNT * auto_clnt_create(const char *, int, int, int)
Definition: auto_clnt.c:271
void auto_clnt_free(AUTO_CLNT *)
Definition: auto_clnt.c:316
VSTREAM * auto_clnt_access(AUTO_CLNT *)
Definition: auto_clnt.c:251