aboutsummaryrefslogtreecommitdiff
path: root/src/include/microhttpd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/microhttpd.h')
-rw-r--r--src/include/microhttpd.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 670a990d..626d359e 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -96,7 +96,7 @@ extern "C"
96 * they are parsed as decimal numbers. 96 * they are parsed as decimal numbers.
97 * Example: 0x01093001 = 1.9.30-1. 97 * Example: 0x01093001 = 1.9.30-1.
98 */ 98 */
99#define MHD_VERSION 0x00097521 99#define MHD_VERSION 0x00097522
100 100
101/* If generic headers don't work on your platform, include headers 101/* If generic headers don't work on your platform, include headers
102 which define 'va_list', 'size_t', 'ssize_t', 'intptr_t', 'off_t', 102 which define 'va_list', 'size_t', 'ssize_t', 'intptr_t', 'off_t',
@@ -4701,9 +4701,14 @@ MHD_digest_auth_get_username3 (struct MHD_Connection *connection);
4701/** 4701/**
4702 * Get the username from the authorization header sent by the client 4702 * Get the username from the authorization header sent by the client
4703 * 4703 *
4704 * This function supports username in standard and extended notations.
4705 * "userhash" is not supported by this function.
4706 *
4704 * @param connection The MHD connection structure 4707 * @param connection The MHD connection structure
4705 * @return NULL if no username could be found, a pointer 4708 * @return NULL if no username could be found, username provided as
4706 * to the username if found, free using #MHD_free(). 4709 * "userhash" or memory allocation error occurred;
4710 * a pointer to the username if found, free using #MHD_free().
4711 * @warning Returned value must be freed by #MHD_free().
4707 * @deprecated use MHD_digest_auth_get_username3() 4712 * @deprecated use MHD_digest_auth_get_username3()
4708 * @ingroup authentication 4713 * @ingroup authentication
4709 */ 4714 */