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.h18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 9912427b..79f57a19 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -1796,7 +1796,15 @@ enum MHD_DaemonInfoType
1796 * Request the number of current connections handled by the daemon. 1796 * Request the number of current connections handled by the daemon.
1797 * No extra arguments should be passed. 1797 * No extra arguments should be passed.
1798 */ 1798 */
1799 MHD_DAEMON_INFO_CURRENT_CONNECTIONS 1799 MHD_DAEMON_INFO_CURRENT_CONNECTIONS,
1800
1801 /**
1802 * Request the daemon flags.
1803 * No extra arguments should be passed.
1804 * Note: flags may differ from original 'flags' specified for
1805 * daemon, especially if #MHD_USE_AUTO was set.
1806 */
1807 MHD_DAEMON_INFO_FLAGS
1800}; 1808};
1801 1809
1802 1810
@@ -3184,6 +3192,14 @@ union MHD_DaemonInfo
3184 * Number of active connections, for #MHD_DAEMON_INFO_CURRENT_CONNECTIONS. 3192 * Number of active connections, for #MHD_DAEMON_INFO_CURRENT_CONNECTIONS.
3185 */ 3193 */
3186 unsigned int num_connections; 3194 unsigned int num_connections;
3195
3196 /**
3197 * Combination of #MHD_FLAG values, for #MHD_DAEMON_INFO_FLAGS.
3198 * This value is actually a bitfield.
3199 * Note: flags may differ from original 'flags' specified for
3200 * daemon, especially if #MHD_USE_AUTO was set.
3201 */
3202 enum MHD_FLAG flags;
3187}; 3203};
3188 3204
3189 3205