diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-08-09 23:38:08 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-08-14 20:20:13 +0100 |
commit | 472d1d8e0561e407ce0d5c419978532a71150eca (patch) | |
tree | e86d4d1d6a2548a5b9b0bfb294892e91384fc9ad /lib/pop3.c | |
parent | 629f52843f4bf5f1cf0bbc48b6d3cc2f9d0de1e8 (diff) | |
download | curl-472d1d8e0561e407ce0d5c419978532a71150eca.tar.gz |
email: Introduced the GSSAPI states
Diffstat (limited to 'lib/pop3.c')
-rw-r--r-- | lib/pop3.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/pop3.c b/lib/pop3.c index 314567e3f..ff7e0cabc 100644 --- a/lib/pop3.c +++ b/lib/pop3.c @@ -27,6 +27,7 @@ * RFC2831 DIGEST-MD5 authentication * RFC4422 Simple Authentication and Security Layer (SASL) * RFC4616 PLAIN authentication + * RFC4752 The Kerberos V5 ("GSSAPI") SASL Mechanism * RFC5034 POP3 SASL Authentication Mechanism * RFC6749 OAuth 2.0 Authorization Framework * Draft LOGIN SASL Mechanism <draft-murchison-sasl-login-00.txt> @@ -320,6 +321,9 @@ static void state(struct connectdata *conn, pop3state newstate) "AUTH_DIGESTMD5_RESP", "AUTH_NTLM", "AUTH_NTLM_TYPE2MSG", + "AUTH_GSSAPI", + "AUTH_GSSAPI_TOKEN", + "AUTH_GSSAPI_NO_DATA", "AUTH_XOAUTH2", "AUTH_CANCEL", "AUTH_FINAL", |