From 978b808f7d636aa2540a351fc776287b49dcaa8a Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Fri, 25 May 2012 21:49:25 +0100 Subject: 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. --- lib/smtp.h | 9 --------- 1 file changed, 9 deletions(-) (limited to 'lib/smtp.h') 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; -- cgit v1.2.3