aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2012-05-25 21:58:17 +0100
committerSteve Holme <steve_holme@hotmail.com>2012-05-25 21:58:17 +0100
commit9c480490f7559e169cea59754480f87d2763e2c2 (patch)
treee58dafe3ff248ef59fe264d23e3e315dfb12ed33
parent978b808f7d636aa2540a351fc776287b49dcaa8a (diff)
sasl: Re-factored auth-mechanism constants to be more generic
-rw-r--r--lib/curl_sasl.h14
-rw-r--r--lib/smtp.c36
2 files changed, 25 insertions, 25 deletions
diff --git a/lib/curl_sasl.h b/lib/curl_sasl.h
index dbbbad440..b0d4d365e 100644
--- a/lib/curl_sasl.h
+++ b/lib/curl_sasl.h
@@ -25,12 +25,12 @@
#include "pingpong.h"
/* 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
+#define SASL_AUTH_LOGIN 0x0001
+#define SASL_AUTH_PLAIN 0x0002
+#define SASL_AUTH_CRAM_MD5 0x0004
+#define SASL_AUTH_DIGEST_MD5 0x0008
+#define SASL_AUTH_GSSAPI 0x0010
+#define SASL_AUTH_EXTERNAL 0x0020
+#define SASL_AUTH_NTLM 0x0040
#endif /* HEADER_CURL_SASL_H */
diff --git a/lib/smtp.c b/lib/smtp.c
index ab1afbb96..ae8d9a5b8 100644
--- a/lib/smtp.c
+++ b/lib/smtp.c
@@ -259,19 +259,19 @@ static int smtp_endofresp(struct pingpong *pp, int *resp)
wordlen++;
if(wordlen == 5 && !memcmp(line, "LOGIN", 5))
- smtpc->authmechs |= SMTP_AUTH_LOGIN;
+ smtpc->authmechs |= SASL_AUTH_LOGIN;
else if(wordlen == 5 && !memcmp(line, "PLAIN", 5))
- smtpc->authmechs |= SMTP_AUTH_PLAIN;
+ smtpc->authmechs |= SASL_AUTH_PLAIN;
else if(wordlen == 8 && !memcmp(line, "CRAM-MD5", 8))
- smtpc->authmechs |= SMTP_AUTH_CRAM_MD5;
+ smtpc->authmechs |= SASL_AUTH_CRAM_MD5;
else if(wordlen == 10 && !memcmp(line, "DIGEST-MD5", 10))
- smtpc->authmechs |= SMTP_AUTH_DIGEST_MD5;
+ smtpc->authmechs |= SASL_AUTH_DIGEST_MD5;
else if(wordlen == 6 && !memcmp(line, "GSSAPI", 6))
- smtpc->authmechs |= SMTP_AUTH_GSSAPI;
+ smtpc->authmechs |= SASL_AUTH_GSSAPI;
else if(wordlen == 8 && !memcmp(line, "EXTERNAL", 8))
- smtpc->authmechs |= SMTP_AUTH_EXTERNAL;
+ smtpc->authmechs |= SASL_AUTH_EXTERNAL;
else if(wordlen == 4 && !memcmp(line, "NTLM", 4))
- smtpc->authmechs |= SMTP_AUTH_NTLM;
+ smtpc->authmechs |= SASL_AUTH_NTLM;
line += wordlen;
len -= wordlen;
@@ -457,40 +457,40 @@ static CURLcode smtp_authenticate(struct connectdata *conn)
/* Check supported authentication mechanisms by decreasing order of
security */
#ifndef CURL_DISABLE_CRYPTO_AUTH
- if(smtpc->authmechs & SMTP_AUTH_DIGEST_MD5) {
+ if(smtpc->authmechs & SASL_AUTH_DIGEST_MD5) {
mech = "DIGEST-MD5";
state1 = SMTP_AUTHDIGESTMD5;
- smtpc->authused = SMTP_AUTH_DIGEST_MD5;
+ smtpc->authused = SASL_AUTH_DIGEST_MD5;
}
- else if(smtpc->authmechs & SMTP_AUTH_CRAM_MD5) {
+ else if(smtpc->authmechs & SASL_AUTH_CRAM_MD5) {
mech = "CRAM-MD5";
state1 = SMTP_AUTHCRAMMD5;
- smtpc->authused = SMTP_AUTH_CRAM_MD5;
+ smtpc->authused = SASL_AUTH_CRAM_MD5;
}
else
#endif
#ifdef USE_NTLM
- if(smtpc->authmechs & SMTP_AUTH_NTLM) {
+ if(smtpc->authmechs & SASL_AUTH_NTLM) {
mech = "NTLM";
state1 = SMTP_AUTHNTLM;
state2 = SMTP_AUTHNTLM_TYPE2MSG;
- smtpc->authused = SMTP_AUTH_NTLM;
+ smtpc->authused = SASL_AUTH_NTLM;
result = smtp_auth_ntlm_type1_message(conn, &initresp, &len);
}
else
#endif
- if(smtpc->authmechs & SMTP_AUTH_LOGIN) {
+ if(smtpc->authmechs & SASL_AUTH_LOGIN) {
mech = "LOGIN";
state1 = SMTP_AUTHLOGIN;
state2 = SMTP_AUTHPASSWD;
- smtpc->authused = SMTP_AUTH_LOGIN;
+ smtpc->authused = SASL_AUTH_LOGIN;
result = smtp_auth_login_user(conn, &initresp, &len);
}
- else if(smtpc->authmechs & SMTP_AUTH_PLAIN) {
+ else if(smtpc->authmechs & SASL_AUTH_PLAIN) {
mech = "PLAIN";
state1 = SMTP_AUTHPLAIN;
state2 = SMTP_AUTH;
- smtpc->authused = SMTP_AUTH_PLAIN;
+ smtpc->authused = SASL_AUTH_PLAIN;
result = smtp_auth_plain_data(conn, &initresp, &len);
}
else {
@@ -1811,7 +1811,7 @@ static CURLcode smtp_disconnect(struct connectdata *conn,
#ifdef USE_NTLM
/* Cleanup the ntlm structure */
- if(smtpc->authused == SMTP_AUTH_NTLM) {
+ if(smtpc->authused == SASL_AUTH_NTLM) {
Curl_ntlm_sspi_cleanup(&conn->ntlm);
}
#endif