]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
sasl: Renamed Curl_sasl_decode_ntlm_type2_message()
authorSteve Holme <steve_holme@hotmail.com>
Mon, 4 Jun 2012 21:25:45 +0000 (22:25 +0100)
committerSteve Holme <steve_holme@hotmail.com>
Mon, 4 Jun 2012 21:25:45 +0000 (22:25 +0100)
For consistency with other SASL based functions renamed this function
to Curl_sasl_create_ntlm_type3_message() which better describes its
usage.

lib/curl_sasl.c
lib/curl_sasl.h
lib/pop3.c
lib/smtp.c

index 9f5fe95fb98bcda6657f34f8d9dc676cb0b870e2..7f81405c901bca8dda35883800a889ff9bd64543 100644 (file)
@@ -167,7 +167,7 @@ CURLcode Curl_sasl_create_login_message(struct SessionHandle *data,
  * Parameters:
  *
  * data    [in]     - The session handle.
- * chlg64  [in]     - Pointer to the input buffer.
+ * chlg64  [in]     - Pointer to the base64 encoded challenge buffer.
  * userp   [in]     - The user name.
  * passdwp [in]     - The user's password.
  * outptr  [in/out] - The address where a pointer to newly allocated memory
@@ -237,7 +237,7 @@ CURLcode Curl_sasl_create_cram_md5_message(struct SessionHandle *data,
  * Parameters:
  *
  * data    [in]     - The session handle.
- * chlg64  [in]     - Pointer to the input buffer.
+ * chlg64  [in]     - Pointer to the base64 encoded challenge buffer.
  * userp   [in]     - The user name.
  * passdwp [in]     - The user's password.
  * service [in]     - The service type such as www, smtp or pop
@@ -441,15 +441,15 @@ CURLcode Curl_sasl_create_ntlm_type1_message(const char *userp,
 }
 
 /*
- * Curl_sasl_decode_ntlm_type2_message()
+ * Curl_sasl_create_ntlm_type3_message()
  *
- * This is used to decode a ntlm type-2 message received from a recipient and
- * generate the already encoded NTLM type-3 message ready for sending back.
+ * This is used to generate an already encoded NTLM type-3 message ready for
+ * sending to the recipient.
  *
  * Parameters:
  *
  * data    [in]     - Pointer to session handle.
- * header  [in]     - Pointer to the input buffer.
+ * header  [in]     - Pointer to the base64 encoded type-2 message buffer.
  * userp   [in]     - The user name in the format User or Domain\User.
  * passdwp [in]     - The user's password.
  * ntlm    [in/out] - The ntlm data struct being used and modified.
@@ -459,7 +459,7 @@ CURLcode Curl_sasl_create_ntlm_type1_message(const char *userp,
  *
  * Returns CURLE_OK on success.
  */
-CURLcode Curl_sasl_decode_ntlm_type2_message(struct SessionHandle *data,
+CURLcode Curl_sasl_create_ntlm_type3_message(struct SessionHandle *data,
                                              const char *header,
                                              const char *userp,
                                              const char *passwdp,
index 97e9bcd755a01794eac5d437c347f3f69b6ac7eb..314f6c8ab26e4016bb2bb683aa1a14a9a7740bdf 100644 (file)
@@ -72,7 +72,7 @@ CURLcode Curl_sasl_create_ntlm_type1_message(const char *userp,
 
 /* This is used to decode an incoming NTLM type-2 message and generate a
    base64 encoded type-3 response */
-CURLcode Curl_sasl_decode_ntlm_type2_message(struct SessionHandle *data,
+CURLcode Curl_sasl_create_ntlm_type3_message(struct SessionHandle *data,
                                              const char *header,
                                              const char *userp,
                                              const char *passwdp,
index 2f772ba605e7f07098e7db345c29811af3353ae2..4e6fbd365bd607deafcb8211217c6695f85cec2e 100644 (file)
@@ -814,7 +814,7 @@ static CURLcode pop3_state_auth_ntlm_type2msg_resp(struct connectdata *conn,
   }
   else {
     /* Create the type-3 message */
-    result = Curl_sasl_decode_ntlm_type2_message(data,
+    result = Curl_sasl_create_ntlm_type3_message(data,
                                                  data->state.buffer + 2,
                                                  conn->user, conn->passwd,
                                                  &conn->ntlm,
index c251e50f554be9b1bd879521bdefb3517766f8e2..f54b67dc011e51fcc23759c37146a5ae83c93372 100644 (file)
@@ -848,7 +848,7 @@ static CURLcode smtp_state_auth_ntlm_type2msg_resp(struct connectdata *conn,
     result = CURLE_LOGIN_DENIED;
   }
   else {
-    result = Curl_sasl_decode_ntlm_type2_message(data,
+    result = Curl_sasl_create_ntlm_type3_message(data,
                                                  data->state.buffer + 4,
                                                  conn->user, conn->passwd,
                                                  &conn->ntlm,