diff options
author | Steve Holme <steve_holme@hotmail.com> | 2012-05-25 21:58:17 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2012-05-25 21:58:17 +0100 |
commit | 9c480490f7559e169cea59754480f87d2763e2c2 (patch) | |
tree | e58dafe3ff248ef59fe264d23e3e315dfb12ed33 /lib/curl_sasl.h | |
parent | 978b808f7d636aa2540a351fc776287b49dcaa8a (diff) | |
download | curl-9c480490f7559e169cea59754480f87d2763e2c2.tar.gz |
sasl: Re-factored auth-mechanism constants to be more generic
Diffstat (limited to 'lib/curl_sasl.h')
-rw-r--r-- | lib/curl_sasl.h | 14 |
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 */ |