aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index 06e7e4a7..dc38bada 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -1920,6 +1920,15 @@ struct MHD_Daemon
1920 * The size of queue for listen socket. 1920 * The size of queue for listen socket.
1921 */ 1921 */
1922 unsigned int listen_backlog_size; 1922 unsigned int listen_backlog_size;
1923
1924 /**
1925 * The number of user options used.
1926 *
1927 * Contains number of only meaningful options, i.e. #MHD_OPTION_END
1928 * and #MHD_OPTION_ARRAY are not counted, while options inside
1929 * #MHD_OPTION_ARRAY are counted.
1930 */
1931 size_t num_opts;
1923}; 1932};
1924 1933
1925 1934