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.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 60edf6b7..1a23bc8b 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 0x00097533 99#define MHD_VERSION 0x00097534
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',
@@ -4911,11 +4911,19 @@ MHD_digest_auth_get_request_info3 (struct MHD_Connection *connection);
4911 * 4911 *
4912 * Application may modify buffers as needed until #MHD_free() is called for 4912 * Application may modify buffers as needed until #MHD_free() is called for
4913 * pointer to this structure 4913 * pointer to this structure
4914 * @note Available since #MHD_VERSION 0x00097525 4914 * @note Available since #MHD_VERSION 0x00097534
4915 */ 4915 */
4916struct MHD_DigestAuthUsernameInfo 4916struct MHD_DigestAuthUsernameInfo
4917{ 4917{
4918 /** 4918 /**
4919 * The algorithm as defined by client.
4920 * Set automatically to MD5 if not specified by client.
4921 * @warning Do not be confused with #MHD_DigestAuthAlgorithm,
4922 * which uses other values!
4923 */
4924 enum MHD_DigestAuthAlgo3 algo3;
4925
4926 /**
4919 * The type of username used by client. 4927 * The type of username used by client.
4920 * The 'invalid' and 'missing' types are not used in this structure, 4928 * The 'invalid' and 'missing' types are not used in this structure,
4921 * instead NULL is returned by #MHD_digest_auth_get_username3(). 4929 * instead NULL is returned by #MHD_digest_auth_get_username3().