Postfix3.3.1
match_service.h
[詳解]
1 #ifndef _MATCH_SERVICE_H_INCLUDED_
2 #define _MATCH_SERVICE_H_INCLUDED_
3 
4 /*++
5 /* NAME
6 /* match_service 3h
7 /* SUMMARY
8 /* simple master.cf service name.type pattern matcher
9 /* SYNOPSIS
10 /* #include <match_service.h>
11 /* DESCRIPTION
12 /* .nf
13 
14  /* External interface. */
15 
16 extern ARGV *match_service_init(const char *);
17 extern ARGV *match_service_init_argv(char **);
18 extern int match_service_match(ARGV *, const char *);
19 extern void match_service_free(ARGV *);
20 
21 /* LICENSE
22 /* .ad
23 /* .fi
24 /* The Secure Mailer license must be distributed with this software.
25 /* AUTHOR(S)
26 /* Wietse Venema
27 /* IBM T.J. Watson Research
28 /* P.O. Box 704
29 /* Yorktown Heights, NY 10598, USA
30 /*--*/
31 
32 #endif
Definition: argv.h:17
ARGV * match_service_init_argv(char **)
ARGV * match_service_init(const char *)
Definition: match_service.c:99
void match_service_free(ARGV *)
int match_service_match(ARGV *, const char *)