aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-09-05 14:54:48 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-09-05 18:03:09 +0300
commit0531511f18f102455903b2bdcefda73b6df9b966 (patch)
treede44022264c2fecabffb88ef8b1c6f5de8dbc560 /src/microhttpd
parentc3680cb737bcac2a4dc14cca5a80af6ca0de21e7 (diff)
downloadlibmicrohttpd-0531511f18f102455903b2bdcefda73b6df9b966.tar.gz
libmicrohttpd-0531511f18f102455903b2bdcefda73b6df9b966.zip
Editorial doxy improvements
Diffstat (limited to 'src/microhttpd')
-rw-r--r--src/microhttpd/digestauth.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/microhttpd/digestauth.c b/src/microhttpd/digestauth.c
index d3f5f595..a6792930 100644
--- a/src/microhttpd/digestauth.c
+++ b/src/microhttpd/digestauth.c
@@ -1087,15 +1087,16 @@ MHD_digest_auth_get_username3 (struct MHD_Connection *connection)
1087/** 1087/**
1088 * Get the username from the authorization header sent by the client 1088 * Get the username from the authorization header sent by the client
1089 * 1089 *
1090 * This function support username in standard and extended notations. 1090 * This function supports username in standard and extended notations.
1091 * "userhash" is not supported by this function. 1091 * "userhash" is not supported by this function.
1092 * 1092 *
1093 * @param connection The MHD connection structure 1093 * @param connection The MHD connection structure
1094 * @return NULL if no username could be found, username provided as 1094 * @return NULL if no username could be found, username provided as
1095 * "userhash" or memory allocation error occurs; 1095 * "userhash", extended notation broken or memory allocation error
1096 * occurs;
1096 * a pointer to the username if found, free using #MHD_free(). 1097 * a pointer to the username if found, free using #MHD_free().
1097 * @warning Returned value must be freed by #MHD_free(). 1098 * @warning Returned value must be freed by #MHD_free().
1098 * @deprecated use MHD_digest_auth_get_username3() 1099 * @sa #MHD_digest_auth_get_username3()
1099 * @ingroup authentication 1100 * @ingroup authentication
1100 */ 1101 */
1101_MHD_EXTERN char * 1102_MHD_EXTERN char *