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.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 61d1edef..b9a9bcf9 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -126,7 +126,7 @@ typedef intptr_t ssize_t;
126 * Current version of the library. 126 * Current version of the library.
127 * 0x01093001 = 1.9.30-1. 127 * 0x01093001 = 1.9.30-1.
128 */ 128 */
129#define MHD_VERSION 0x00096100 129#define MHD_VERSION 0x00096101
130 130
131/** 131/**
132 * MHD-internal return code for "YES". 132 * MHD-internal return code for "YES".
@@ -3574,7 +3574,12 @@ enum MHD_FEATURE
3574 * file-FD based responses over non-TLS connections. 3574 * file-FD based responses over non-TLS connections.
3575 * @note Since v0.9.56 3575 * @note Since v0.9.56
3576 */ 3576 */
3577 MHD_FEATURE_SENDFILE = 21 3577 MHD_FEATURE_SENDFILE = 21,
3578
3579 /**
3580 * Get whether MHD supports threads.
3581 */
3582 MHD_FEATURE_THREADS
3578}; 3583};
3579 3584
3580 3585