Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git] / external / ibm-public / postfix / dist / src / global / clnt_stream.h
blob840021fa9029dad476dd1e0efb6b97fabbc8a368
1 /* $NetBSD$ */
3 #ifndef _CLNT_STREAM_H_INCLUDED_
4 #define _CLNT_STREAM_H_INCLUDED_
6 /*++
7 /* NAME
8 /* clnt_stream 3h
9 /* SUMMARY
10 /* client socket maintenance
11 /* SYNOPSIS
12 /* #include <clnt_stream.h>
13 /* DESCRIPTION
14 /* .nf
17 * Utility library.
19 #include <vstream.h>
22 * External interface.
24 typedef struct CLNT_STREAM CLNT_STREAM;
26 extern CLNT_STREAM *clnt_stream_create(const char *, const char *, int, int);
27 extern VSTREAM *clnt_stream_access(CLNT_STREAM *);
28 extern void clnt_stream_recover(CLNT_STREAM *);
29 extern void clnt_stream_free(CLNT_STREAM *);
31 /* LICENSE
32 /* .ad
33 /* .fi
34 /* The Secure Mailer license must be distributed with this software.
35 /* AUTHOR(S)
36 /* Wietse Venema
37 /* IBM T.J. Watson Research
38 /* P.O. Box 704
39 /* Yorktown Heights, NY 10598, USA
40 /*--*/
42 #endif