diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-10-27 09:10:38 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-10-27 09:17:03 +0000 |
commit | 7de4cc35f81aa6c3cdb8b377a27843bcabdaec48 (patch) | |
tree | fc05b0c7b3891e6bd81e0b31bad5a7d8090b90d2 /lib/smtp.h | |
parent | aa0eaef4838ccda89606459a1dd9a9cecbd612e7 (diff) | |
download | curl-7de4cc35f81aa6c3cdb8b377a27843bcabdaec48.tar.gz |
email: Added initial support for cancelling authentication
Should a client application fail to decode an authentication message
received from a server, or not support any of the parameters given by
the server in the message, then the authentication phrase should be
cancelled gracefully by the client rather than simply terminating the
connection.
The authentication phrase should be cancelled by simply sending a '*'
to the server, in response to erroneous data being received, as per
RFC-3501, RFC-4954 and RFC-5034.
This patch adds the necessary state machine constants and appropriate
response handlers in order to add this functionality for the CRAM-MD5,
DIGEST-MD5 and NTLM authentication mechanisms.
Diffstat (limited to 'lib/smtp.h')
-rw-r--r-- | lib/smtp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/smtp.h b/lib/smtp.h index 14429a5e7..7d91657a4 100644 --- a/lib/smtp.h +++ b/lib/smtp.h @@ -45,6 +45,7 @@ typedef enum { SMTP_AUTH_NTLM, SMTP_AUTH_NTLM_TYPE2MSG, SMTP_AUTH_XOAUTH2, + SMTP_AUTH_CANCEL, SMTP_AUTH_FINAL, SMTP_MAIL, /* MAIL FROM */ SMTP_RCPT, /* RCPT TO */ |