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.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index d1d828e0..6107067e 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -2023,6 +2023,8 @@ MHD_create_response_from_buffer (size_t size,
2023 * @return NULL on error (i.e. invalid arguments, out of memory) 2023 * @return NULL on error (i.e. invalid arguments, out of memory)
2024 * @ingroup response 2024 * @ingroup response
2025 */ 2025 */
2026/* NOTE: this should be 'uint64_t' instead of 'size_t', but changing
2027 this would break API compatibility. */
2026_MHD_EXTERN struct MHD_Response * 2028_MHD_EXTERN struct MHD_Response *
2027MHD_create_response_from_fd (size_t size, 2029MHD_create_response_from_fd (size_t size,
2028 int fd); 2030 int fd);
@@ -2044,6 +2046,8 @@ MHD_create_response_from_fd (size_t size,
2044 * @return NULL on error (i.e. invalid arguments, out of memory) 2046 * @return NULL on error (i.e. invalid arguments, out of memory)
2045 * @ingroup response 2047 * @ingroup response
2046 */ 2048 */
2049/* NOTE: this should be 'uint64_t' instead of 'size_t', but changing
2050 this would break API compatibility. */
2047_MHD_EXTERN struct MHD_Response * 2051_MHD_EXTERN struct MHD_Response *
2048MHD_create_response_from_fd_at_offset (size_t size, 2052MHD_create_response_from_fd_at_offset (size_t size,
2049 int fd, 2053 int fd,