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 13bfa554..34b35c4f 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 0x00097542 99#define MHD_VERSION 0x00097543
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',
@@ -6186,7 +6186,15 @@ enum MHD_FEATURE
6186 * unlikely. 6186 * unlikely.
6187 * @note Available since #MHD_VERSION 0x00097540 6187 * @note Available since #MHD_VERSION 0x00097540
6188 */ 6188 */
6189 MHD_FEATURE_EXTERN_HASH = 32 6189 MHD_FEATURE_EXTERN_HASH = 32,
6190
6191 /**
6192 * Get whether MHD was built with asserts enabled.
6193 * For debug builds the error log is always enabled even if #MHD_USE_ERROR_LOG
6194 * is not specified for daemon.
6195 * @note Available since #MHD_VERSION 0x00097543
6196 */
6197 MHD_FEATURE_DEBUG_BUILD = 33
6190}; 6198};
6191 6199
6192 6200