Postfix3.3.1
smtpd_token.h
[詳解]
1 /*++
2 /* NAME
3 /* smtpd_token 3h
4 /* SUMMARY
5 /* tokenize SMTPD command
6 /* SYNOPSIS
7 /* #include <smtpd_token.h>
8 /* DESCRIPTION
9 /* .nf
10 
11  /*
12  * Utility library.
13  */
14 #include <vstring.h>
15 
16  /*
17  * External interface.
18  */
19 typedef struct SMTPD_TOKEN {
20  int tokval;
21  char *strval;
23 } SMTPD_TOKEN;
24 
25 #define SMTPD_TOK_OTHER 0
26 #define SMTPD_TOK_ADDR 1
27 #define SMTPD_TOK_ERROR 2
28 
29 extern int smtpd_token(char *, SMTPD_TOKEN **);
30 
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 /*--*/
struct SMTPD_TOKEN SMTPD_TOKEN
int smtpd_token(char *, SMTPD_TOKEN **)
Definition: smtpd_token.c:175
char * strval
Definition: smtpd_token.h:21
VSTRING * vstrval
Definition: smtpd_token.h:22