diff options
author | Steve Holme <steve_holme@hotmail.com> | 2012-05-25 21:49:25 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2012-05-25 21:49:25 +0100 |
commit | 978b808f7d636aa2540a351fc776287b49dcaa8a (patch) | |
tree | c58a549a51d92236e08ec49059dcdfe061eab48a /lib/smtp.h | |
parent | 74be99357669da26900ae23b5005ddeabb91b453 (diff) | |
download | curl-978b808f7d636aa2540a351fc776287b49dcaa8a.tar.gz |
smtp: Moved auth-mechanism constants into a separate header file
Move the SMTP_AUTH constants into a separate header file in
preparation for adding SASL based authentication to POP3 as the two
protocols will need to share them.
Diffstat (limited to 'lib/smtp.h')
-rw-r--r-- | lib/smtp.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/smtp.h b/lib/smtp.h index 55f169e02..a010494c3 100644 --- a/lib/smtp.h +++ b/lib/smtp.h @@ -67,15 +67,6 @@ struct smtp_conn { bool ssldone; /* is connect() over SSL done? only relevant in multi mode */ }; -/* Authentication mechanism flags. */ -#define SMTP_AUTH_LOGIN 0x0001 -#define SMTP_AUTH_PLAIN 0x0002 -#define SMTP_AUTH_CRAM_MD5 0x0004 -#define SMTP_AUTH_DIGEST_MD5 0x0008 -#define SMTP_AUTH_GSSAPI 0x0010 -#define SMTP_AUTH_EXTERNAL 0x0020 -#define SMTP_AUTH_NTLM 0x0040 - extern const struct Curl_handler Curl_handler_smtp; extern const struct Curl_handler Curl_handler_smtps; |