Postfix3.3.1
rewrite_clnt.h
[詳解]
1 #ifndef _REWRITE_CLNT_H_INCLUDED_
2 #define _REWRITE_CLNT_H_INCLUDED_
3 
4 /*++
5 /* NAME
6 /* rewrite_clnt 3h
7 /* SUMMARY
8 /* address rewriter client
9 /* SYNOPSIS
10 /* #include <rewrite_clnt.h>
11 /* DESCRIPTION
12 /* .nf
13 
14  /*
15  * Utility library.
16  */
17 #include <vstring.h>
18 
19  /*
20  * Global library.
21  */
22 #include <mail_proto.h> /* MAIL_ATTR_RWR_LOCAL */
23 
24  /*
25  * External interface.
26  */
27 #define REWRITE_ADDR "rewrite"
28 #define REWRITE_CANON MAIL_ATTR_RWR_LOCAL /* backwards compatibility */
29 
30 extern VSTRING *rewrite_clnt(const char *, const char *, VSTRING *);
31 extern VSTRING *rewrite_clnt_internal(const char *, const char *, VSTRING *);
32 
33 /* LICENSE
34 /* .ad
35 /* .fi
36 /* The Secure Mailer license must be distributed with this software.
37 /* AUTHOR(S)
38 /* Wietse Venema
39 /* IBM T.J. Watson Research
40 /* P.O. Box 704
41 /* Yorktown Heights, NY 10598, USA
42 /*--*/
43 
44 #endif
VSTRING * rewrite_clnt(const char *, const char *, VSTRING *)
Definition: rewrite_clnt.c:82
VSTRING * rewrite_clnt_internal(const char *, const char *, VSTRING *)
Definition: rewrite_clnt.c:175