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.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index e0351159..45e3524e 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 0x00097503 99#define MHD_VERSION 0x00097504
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', 102 which define 'va_list', 'size_t', 'ssize_t', 'intptr_t',
@@ -3582,11 +3582,12 @@ MHD_create_response_from_buffer_with_free_callback (size_t size,
3582 * @param crfc_cls an argument for @a crfc 3582 * @param crfc_cls an argument for @a crfc
3583 * @return NULL on error (i.e. invalid arguments, out of memory) 3583 * @return NULL on error (i.e. invalid arguments, out of memory)
3584 * @note Available since #MHD_VERSION 0x00097302 3584 * @note Available since #MHD_VERSION 0x00097302
3585 * @note 'const' qualifier is used for @a buffer since #MHD_VERSION 0x00097504
3585 * @ingroup response 3586 * @ingroup response
3586 */ 3587 */
3587_MHD_EXTERN struct MHD_Response * 3588_MHD_EXTERN struct MHD_Response *
3588MHD_create_response_from_buffer_with_free_callback_cls (size_t size, 3589MHD_create_response_from_buffer_with_free_callback_cls (size_t size,
3589 void *buffer, 3590 const void *buffer,
3590 MHD_ContentReaderFreeCallback 3591 MHD_ContentReaderFreeCallback
3591 crfc, 3592 crfc,
3592 void *crfc_cls); 3593 void *crfc_cls);