Postfix3.3.1
smtpd_sasl_proto.h
[詳解]
1 /*++
2 /* NAME
3 /* smtpd_sasl_proto 3h
4 /* SUMMARY
5 /* Postfix SMTP protocol support for SASL authentication
6 /* SYNOPSIS
7 /* #include "smtpd_sasl_proto.h"
8 /* DESCRIPTION
9 /* .nf
10 
11  /*
12  * SMTP protocol interface.
13  */
14 extern int smtpd_sasl_auth_cmd(SMTPD_STATE *, int, SMTPD_TOKEN *);
15 extern void smtpd_sasl_auth_reset(SMTPD_STATE *);
16 extern char *smtpd_sasl_mail_opt(SMTPD_STATE *, const char *);
17 extern void smtpd_sasl_mail_reset(SMTPD_STATE *);
18 
19 #define smtpd_sasl_auth_extern smtpd_sasl_login
20 #define smtpd_sasl_auth_reset smtpd_sasl_logout
21 
22 /* LICENSE
23 /* .ad
24 /* .fi
25 /* The Secure Mailer license must be distributed with this software.
26 /* AUTHOR(S)
27 /* Initial implementation by:
28 /* Till Franke
29 /* SuSE Rhein/Main AG
30 /* 65760 Eschborn, Germany
31 /*
32 /* Adopted by:
33 /* Wietse Venema
34 /* IBM T.J. Watson Research
35 /* P.O. Box 704
36 /* Yorktown Heights, NY 10598, USA
37 /*--*/
int smtpd_sasl_auth_cmd(SMTPD_STATE *, int, SMTPD_TOKEN *)
void smtpd_sasl_mail_reset(SMTPD_STATE *)
#define smtpd_sasl_auth_reset
char * smtpd_sasl_mail_opt(SMTPD_STATE *, const char *)