sasl: Small comment style tidy up following ntlm commit

This commit is contained in:
Steve Holme 2012-06-02 11:09:59 +01:00
parent d9ca9e9869
commit 6f964e4f06
2 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@
/* /*
* Curl_sasl_create_plain_message() * Curl_sasl_create_plain_message()
* *
* This is used to generate an already encoded plain message ready * This is used to generate an already encoded PLAIN message ready
* for sending to the recipient. * for sending to the recipient.
* *
* Parameters: * Parameters:
@ -82,7 +82,7 @@ CURLcode Curl_sasl_create_plain_message(struct SessionHandle *data,
/* /*
* Curl_sasl_create_login_message() * Curl_sasl_create_login_message()
* *
* This is used to generate an already encoded login message containing the * This is used to generate an already encoded LOGIN message containing the
* user name or password ready for sending to the recipient. * user name or password ready for sending to the recipient.
* *
* Parameters: * Parameters:

View File

@ -33,13 +33,13 @@
#define SASL_AUTH_EXTERNAL 0x0020 #define SASL_AUTH_EXTERNAL 0x0020
#define SASL_AUTH_NTLM 0x0040 #define SASL_AUTH_NTLM 0x0040
/* This is used to generate a base64 encoded plain authentication message */ /* This is used to generate a base64 encoded PLAIN authentication message */
CURLcode Curl_sasl_create_plain_message(struct SessionHandle *data, CURLcode Curl_sasl_create_plain_message(struct SessionHandle *data,
const char* userp, const char* userp,
const char* passwdp, const char* passwdp,
char **outptr, size_t *outlen); char **outptr, size_t *outlen);
/* This is used to generate a base64 encoded login authentication message /* This is used to generate a base64 encoded LOGIN authentication message
containing either the user name or password details */ containing either the user name or password details */
CURLcode Curl_sasl_create_login_message(struct SessionHandle *data, CURLcode Curl_sasl_create_login_message(struct SessionHandle *data,
const char* valuep, char **outptr, const char* valuep, char **outptr,