aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/daemon.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/daemon.c')
-rw-r--r--src/microhttpd/daemon.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 53ab147f..d854de31 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -8577,6 +8577,21 @@ MHD_get_version (void)
8577 8577
8578 8578
8579/** 8579/**
8580 * Obtain the version of this library as a binary value.
8581 *
8582 * @return version binary value, e.g. "0x00090900" (#MHD_VERSION of
8583 * compiled MHD binary)
8584 * @note Available since #MHD_VERSION 0x00097544
8585 * @ingroup specialized
8586 */
8587_MHD_EXTERN uint32_t
8588MHD_get_version_bin (void)
8589{
8590 return (uint32_t) MHD_VERSION;
8591}
8592
8593
8594/**
8580 * Get information about supported MHD features. 8595 * Get information about supported MHD features.
8581 * Indicate that MHD was compiled with or without support for 8596 * Indicate that MHD was compiled with or without support for
8582 * particular feature. Some features require additional support 8597 * particular feature. Some features require additional support