aboutsummaryrefslogtreecommitdiff
path: root/lib/pop3.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-12-17 22:48:09 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-12-17 23:08:32 +0000
commitc0245cc59180e9330f80a8043005f91795c73981 (patch)
tree6e6408e8080f98499ee5914e63f6da3b21afcc82 /lib/pop3.c
parent13c696f37f7dc08567811069f7251d7774a43e93 (diff)
email: Renamed *_perform_authenticate() functions
In preparation for the upcoming SASL downgrade feature renamed the imap__perform_authenticate(), pop3__perform_authenticate() and smtp__perform_authenticate() functions.
Diffstat (limited to 'lib/pop3.c')
-rw-r--r--lib/pop3.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/lib/pop3.c b/lib/pop3.c
index d432f9d0f..c2c6bc734 100644
--- a/lib/pop3.c
+++ b/lib/pop3.c
@@ -574,15 +574,13 @@ static CURLcode pop3_perform_apop(struct connectdata *conn)
/***********************************************************************
*
- * pop3_perform_authenticate()
+ * pop3_perform_authentication()
*
- * Sends an AUTH command allowing the client to login with the appropriate
- * SASL authentication mechanism.
- *
- * Additionally, the function will perform fallback to APOP and USER commands
- * should a common mechanism not be available between the client and server.
+ * Initiates the authentication sequence, with the appropriate SASL
+ * authentication mechanism, falling back to APOP and clear text should a
+ * common mechanism not be available between the client and server.
*/
-static CURLcode pop3_perform_authenticate(struct connectdata *conn)
+static CURLcode pop3_perform_authentication(struct connectdata *conn)
{
CURLcode result = CURLE_OK;
struct SessionHandle *data = conn->data;
@@ -809,14 +807,14 @@ static CURLcode pop3_state_capa_resp(struct connectdata *conn, int pop3code,
result = pop3_perform_starttls(conn);
else if(data->set.use_ssl == CURLUSESSL_TRY)
/* Fallback and carry on with authentication */
- result = pop3_perform_authenticate(conn);
+ result = pop3_perform_authentication(conn);
else {
failf(data, "STLS not supported.");
result = CURLE_USE_SSL_FAILED;
}
}
else
- result = pop3_perform_authenticate(conn);
+ result = pop3_perform_authentication(conn);
return result;
}
@@ -837,7 +835,7 @@ static CURLcode pop3_state_starttls_resp(struct connectdata *conn,
result = CURLE_USE_SSL_FAILED;
}
else
- result = pop3_perform_authenticate(conn);
+ result = pop3_perform_authentication(conn);
}
else
result = pop3_perform_upgrade_tls(conn);