Editorial doxy improvements

This commit is contained in:
Evgeny Grin (Karlson2k)
2022-09-05 18:03:09 +03:00
parent c3680cb737
commit 0531511f18
2 changed files with 8 additions and 6 deletions
+4 -3
View File
@@ -4999,7 +4999,7 @@ struct MHD_DigestAuthInfo
* The nc parameter value.
* Can be used by application to limit the number of nonce re-uses. If @a nc
* is higher than application wants to allow, then auth required response with
* 'stale=true' could be used to force client to get the fresh 'nonce'.
* 'stale=true' could be used to force client to retry with the fresh 'nonce'.
* If not specified by client or does not have hexadecimal digits only, the
* value is #MHD_DIGEST_AUTH_INVALID_NC_VALUE.
*/
@@ -5429,10 +5429,11 @@ MHD_queue_auth_required_response3 (struct MHD_Connection *connection,
*
* @param connection The MHD connection structure
* @return NULL if no username could be found, username provided as
* "userhash" or memory allocation error occurred;
* "userhash", extended notation broken or memory allocation error
* occurs;
* a pointer to the username if found, free using #MHD_free().
* @warning Returned value must be freed by #MHD_free().
* @deprecated use MHD_digest_auth_get_username3()
* @sa #MHD_digest_auth_get_username3()
* @ingroup authentication
*/
_MHD_EXTERN char *
+4 -3
View File
@@ -1087,15 +1087,16 @@ MHD_digest_auth_get_username3 (struct MHD_Connection *connection)
/**
* Get the username from the authorization header sent by the client
*
* This function support username in standard and extended notations.
* This function supports username in standard and extended notations.
* "userhash" is not supported by this function.
*
* @param connection The MHD connection structure
* @return NULL if no username could be found, username provided as
* "userhash" or memory allocation error occurs;
* "userhash", extended notation broken or memory allocation error
* occurs;
* a pointer to the username if found, free using #MHD_free().
* @warning Returned value must be freed by #MHD_free().
* @deprecated use MHD_digest_auth_get_username3()
* @sa #MHD_digest_auth_get_username3()
* @ingroup authentication
*/
_MHD_EXTERN char *