Postfix3.3.1
dsn_filter.h
[詳解]
1 #ifndef _DSN_FILTER_H_INCLUDED_
2 #define _DSN_FILTER_H_INCLUDED_
3 
4 /*++
5 /* NAME
6 /* dsn_filter 3h
7 /* SUMMARY
8 /* delivery status filter
9 /* SYNOPSIS
10 /* #include <dsn_filter.h>
11 /* DESCRIPTION
12 /* .nf
13 
14  /*
15  * External interface.
16  */
17 typedef struct DSN_FILTER DSN_FILTER;
18 
19 extern DSN_FILTER *dsn_filter_create(const char *, const char *);
20 extern DSN *dsn_filter_lookup(DSN_FILTER *, DSN *);
21 extern void dsn_filter_free(DSN_FILTER *);
22 
23 /* LICENSE
24 /* .ad
25 /* .fi
26 /* The Secure Mailer license must be distributed with this software.
27 /* AUTHOR(S)
28 /* Wietse Venema
29 /* IBM T.J. Watson Research
30 /* P.O. Box 704
31 /* Yorktown Heights, NY 10598, USA
32 /*--*/
33 
34 #endif
void dsn_filter_free(DSN_FILTER *)
Definition: dsn_filter.c:184
DSN_FILTER * dsn_filter_create(const char *, const char *)
Definition: dsn_filter.c:107
DSN * dsn_filter_lookup(DSN_FILTER *, DSN *)
Definition: dsn_filter.c:123
Definition: dsn.h:17