aboutsummaryrefslogtreecommitdiff
path: root/lib/curl_sasl.h
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 /lib/curl_sasl.h
parent978b808f7d636aa2540a351fc776287b49dcaa8a (diff)
sasl: Re-factored auth-mechanism constants to be more generic
Diffstat (limited to 'lib/curl_sasl.h')
-rw-r--r--lib/curl_sasl.h14
1 files changed, 7 insertions, 7 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 */