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